anysite-influencer-discovery
Discover and analyze influencers across Instagram, Twitter/X, LinkedIn, YouTube, and Reddit using anysite MCP server. Find content creators by niche, analyze engagement metrics, evaluate audience quality, track influencer activity, and identify partnership opportunities. Supports multi-platform influencer search, profile enrichment, follower analysis, and engagement tracking. Use when users need to find brand ambassadors, research content creators, identify thought leaders, build influencer lists, or evaluate influencer partnerships for marketing campaigns.
What this skill does
# anysite Influencer Discovery
Find and analyze influencers across social platforms using anysite MCP. Discover content creators, evaluate their reach and engagement, and identify partnership opportunities.
## Overview
- **Discover influencers** across Instagram, Twitter, LinkedIn, YouTube
- **Analyze engagement** and audience quality
- **Track activity** and content patterns
- **Evaluate partnership fit** based on niche and metrics
- **Build influencer lists** with contact information
**Coverage**: 85% - Excellent for Instagram, Twitter, LinkedIn, YouTube influencers.
## v2 Tool Interface
All data fetching uses the anysite v2 meta-tools:
- **execute(source, category, endpoint, params)** - Fetch data. Returns first page + `cache_key`.
- **get_page(cache_key, offset, limit)** - Load more items from a previous execute (when `next_offset` is returned).
- **query_cache(cache_key, conditions, sort_by, aggregate, group_by)** - Filter, sort, or aggregate cached data without new API calls.
- **export_data(cache_key, format)** - Export full dataset as CSV, JSON, or JSONL. Returns a download URL.
**Error handling**: Check responses for `llm_hint` fields that provide actionable guidance on failures (e.g., alias not found, URN required).
## Supported Platforms
- ✅ **Instagram**: Profile stats, posts, followers, engagement, Reels
- ✅ **Twitter/X**: User search, followers, tweets, engagement
- ✅ **LinkedIn**: B2B influencers, thought leaders, professional content
- ✅ **YouTube**: Channel search, subscribers, views, video performance
- ✅ **Reddit**: Community influencers, karma, post quality
## Quick Start
**Step 1: Search for Influencers**
By platform:
- Instagram: `execute("instagram", "search", "search_posts", {"query": "niche keywords", "count": 50})` with niche keywords + hashtags
- Twitter: `execute("twitter", "search", "search_users", {"query": "niche keywords", "count": 50})` with niche keywords
- LinkedIn: `execute("linkedin", "search", "search_users", {"keywords": "industry thought leader", "count": 50})` with industry + "thought leader"
- YouTube: `execute("youtube", "search", "search_videos", {"query": "niche", "count": 50})` with niche, then analyze channels
**Step 2: Analyze Profiles**
Get detailed metrics:
- Instagram: `execute("instagram", "user", "user", {"user": "username"})` -> followers, posts, engagement rate
- Twitter: `execute("twitter", "user", "get", {"username": "handle"})` -> followers, tweet frequency
- YouTube: `execute("youtube", "channel", "channel_videos", {"channel": "...", "count": 30})` -> subscribers, views, growth
- LinkedIn: `execute("linkedin", "user", "user", {"user": "alias"})` -> connections, post engagement
**Step 3: Evaluate Engagement**
Check engagement quality:
- Post likes, comments, shares
- Engagement rate (engagement / followers)
- Audience authenticity (comment quality)
- Content consistency (posts per week)
Use `query_cache(cache_key, sort_by=[{"field": "like_count", "order": "desc"}])` to rank posts by engagement without re-fetching.
**Step 4: Build Influencer List**
Export with `export_data(cache_key, "csv")`:
- Name, handle, platform
- Follower count, engagement rate
- Niche/topics, content type
- Contact info (if available)
- Partnership fit score
## Common Workflows
### Workflow 1: Instagram Influencer Discovery
**Scenario**: Find Instagram influencers in sustainable fashion (10k-100k followers)
**Steps**:
1. **Search by Hashtag/Keywords**
```
execute("instagram", "search", "search_posts", {
"query": "sustainable fashion OR eco friendly fashion",
"count": 100
})
-> Extract unique user handles from results
-> Use get_page(cache_key, offset, 50) if next_offset returned for more results
```
2. **Analyze Each Creator**
```
For each unique handle:
execute("instagram", "user", "user", {"user": "username"})
-> Follower count, bio, profile type
Filter for:
- 10k-100k followers
- Business/Creator account
- Bio mentioning sustainability
```
3. **Evaluate Content**
```
For qualified creators:
execute("instagram", "user", "user_posts", {"user": "username", "count": 30})
Analyze:
- Post frequency (consistency)
- Engagement rate per post
- Content quality and style
- Brand partnerships visible
Use query_cache(cache_key, sort_by=[{"field": "like_count", "order": "desc"}]) to find top posts
Use query_cache(cache_key, aggregate=[{"field": "like_count", "function": "avg"}]) for average engagement
```
4. **Check Audience Quality**
```
execute("instagram", "post", "post_likes", {"post": "post_id", "count": 100})
execute("instagram", "post", "post_comments", {"post": "post_id", "count": 50})
Look for:
- Real comments (not just emojis)
- Engaged community (questions, discussions)
- Geographic relevance
```
5. **Get Contact Information**
```
From Instagram bio:
- Email addresses
- Website links
If LinkedIn mentioned:
execute("linkedin", "search", "search_users", {"keywords": "first_name last_name"})
execute("linkedin", "user", "user", {"user": "alias_from_search"})
```
**Expected Output**:
- 20-40 qualified influencers
- Engagement metrics for each
- Contact information for 60-70%
- Partnership fit scores
Use `export_data(cache_key, "csv")` to generate a downloadable influencer list.
### Workflow 2: LinkedIn Thought Leader Identification
**Scenario**: Find B2B thought leaders in SaaS/sales
**Steps**:
1. **Search for Active Posters**
```
execute("linkedin", "search", "search_users", {
"keywords": "SaaS sales thought leader",
"title": "VP Sales OR Head of Sales OR Chief Revenue Officer",
"count": 100
})
```
2. **Analyze Post Activity**
```
For each candidate:
execute("linkedin", "post", "get_user_posts", {"user": "urn", "count": 50})
Filter for:
- Posts 2-3x per week minimum
- High engagement (100+ reactions)
- Original content (not just shares)
Use query_cache(cache_key, conditions=[{"field": "comment_count", "operator": ">", "value": 10}])
to filter for high-engagement posts
```
3. **Evaluate Influence**
```
Check post engagement:
- Average reactions per post
- Comment quality and quantity
- Share count
- Follower growth signals
Use query_cache(cache_key, aggregate=[
{"field": "comment_count", "function": "avg"},
{"field": "share_count", "function": "avg"}
]) for average metrics
```
4. **Assess Content Quality**
```
Review posts for:
- Expertise demonstration
- Original insights
- Engagement with comments
- Consistency of messaging
```
**Expected Output**:
- 15-25 active thought leaders
- Content themes and topics
- Engagement metrics
- Partnership opportunities (guest posts, quotes, etc.)
Use `export_data(cache_key, "csv")` to export the thought leader list.
### Workflow 3: YouTube Creator Research
**Scenario**: Find YouTube creators in tech reviews
**Steps**:
1. **Search for Niche Content**
```
execute("youtube", "search", "search_videos", {
"query": "tech review 2026",
"count": 100
})
-> Extract unique channel names
-> Use get_page(cache_key, offset, 50) if more results needed
```
2. **Analyze Channels**
```
For each channel:
execute("youtube", "channel", "channel_videos", {"channel": "channel_id", "count": 30})
Check:
- Subscriber count
- Upload frequency
- Average views per video
- Video length (long-form vs shorts)
Use query_cache(cache_key, aggregate=[{"field": "view_count", "function": "avg"}]) for average views
```
3. **Evaluate Video Performance**
```
For top videos:
execute("youtube", "video", "video", {"video": "video_id"})
Metrics:
- View count
- Like/dislike ratio
- Comments count
- Watch time signals (retention)
```
4. **Analyze Audience Engagement**
```
execute("youtube", "video", "video_comments", {"video": "video_id", "count": 100})
Look for:
- Active community
- Technical discussions
- Purchase decisions influenced
```
**Expected Output**:
- 10-20 relevant channels
- Subscriber and view metrics
- Engagement analysis
- Partnership fit assessment
Use `export_data(cache_key, "csv")` to export channel data.
## MCP ToolsRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".