anysite-influencer-discovery
Provides tools to find, evaluate, and track influencers across social media platforms. Facilitates partnership research and audience quality analysis.
Install
mkdir -p .claude/skills/anysite-influencer-discovery && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11721" && unzip -o skill.zip -d .claude/skills/anysite-influencer-discovery && rm skill.zipInstalls to .claude/skills/anysite-influencer-discovery
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
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.Key capabilities
- →Discover influencers across Instagram, Twitter, LinkedIn, and YouTube
- →Analyze engagement metrics and audience quality
- →Track influencer activity and content patterns
- →Evaluate partnership fit based on niche and metrics
- →Build influencer lists with contact information
- →Export full datasets as CSV, JSON, or JSONL
How it works
The skill uses the anysite MCP server to fetch and analyze influencer data from various social media platforms. It provides tools to search, get detailed metrics, and export data.
Inputs & outputs
When to use anysite-influencer-discovery
- →Find influencers in a specific niche
- →Evaluate engagement metrics for a social profile
- →Build a list of potential brand partners
- →Export influencer audience data
About this skill
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_offsetis 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:
- 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
- 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
- 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
- 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
- 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:
- 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
})
- 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
- 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
- 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:
- 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
- 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
- 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)
- 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 Tools Reference (v2)
execute("instagram", "search", "search_posts", {"query": ..., "count": N})- Find posts by keywords/hashtagsexecute("instagram", "user", "user", {"user": ...})- Get profile with followers, bioexecute("instagram", "user", "user_posts", {"user": ..., "count": N})- Get recent posts with engagementexecute("instagram", "post", "post_likes", {"post": ..., "count": N})- Check audience authenticityexecute("instagram", "post", "post_comments", {"post": ..., "count": N})- Analyze engagement qualityexecute("instagram", "user", "user_friendships", {"user": ..., "count": N, "type": "followers"})- Get followers list (for analysis)
Twitter/X
execute("twitter", "search", "search_users", {"query": ..., "count": N})- Find users by keywords/bioexecute("twitter", "user", "get", {"username": ...})- Get profile with followers, tweetsexecute("twitter", "user_tweets", "get", {"username": ...})- Get recent tweets with engagementexecute("twitter", "search", "search_posts", {"query": ..., "count": N})- Find influential tweets in niche
execute("linkedin", "search", "search_users", {"keywords": ..., "count": N})- Find professionals by keywords/titleexecute("linkedin", "user", "user", {"user": ...})- Get complete profile (includes skills withwith_skills: true)execute("linkedin", "post", "get_user_posts", {"user": "urn", "count": N})- Get post history and engagementexecute("linkedin", "user", "user_skills", {"urn": ..., "count": N})- Verify expertise (requires URN from profile)
Note: LinkedIn connection count is returned in the profile response (connection_count field). No separate endpoint needed.
YouTube
execute("youtube", "search", "search_videos", {"query": ..., "count": N})- Find videos by keywordsexecute("youtube", "channel", "channel_videos", {"channel": ..., "count": N})- Get all videos from channel- `execute("youtube", "video", "video", {
Content truncated.
When not to use it
- →When the anysite MCP server is not available
Limitations
- →Coverage is excellent for Instagram, Twitter, LinkedIn, YouTube influencers
- →Requires the anysite MCP server
- →API errors may occur, requiring checking `llm_hint` fields
How it compares
This skill automates the process of finding and analyzing influencers across multiple platforms, providing structured data and export options, unlike manual social media browsing.
Compared to similar skills
anysite-influencer-discovery side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| anysite-influencer-discovery (this skill) | 0 | 4mo | No flags | Intermediate |
| literature-review | 559 | 2mo | Review | Advanced |
| openalex-database | 48 | 7mo | Review | Intermediate |
| market-research-reports | 38 | 7mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
literature-review
K-Dense-AI
Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.).
openalex-database
davila7
Query and analyze scholarly literature using the OpenAlex database. This skill should be used when searching for academic papers, analyzing research trends, finding works by authors or institutions, tracking citations, discovering open access publications, or conducting bibliometric analysis across 240M+ scholarly works. Use for literature searches, research output analysis, citation analysis, and academic database queries.
market-research-reports
davila7
Generate comprehensive market research reports (50+ pages) in the style of top consulting firms (McKinsey, BCG, Gartner). Features professional LaTeX formatting, extensive visual generation with scientific-schematics and generate-image, deep integration with research-lookup for data gathering, and multi-framework strategic analysis including Porter's Five Forces, PESTLE, SWOT, TAM/SAM/SOM, and BCG Matrix.
scientific-brainstorming
davila7
Research ideation partner. Generate hypotheses, explore interdisciplinary connections, challenge assumptions, develop methodologies, identify research gaps, for creative scientific problem-solving.
exa-search
benjaminjackson
Search the web for content matching a query with AI-powered semantic search. Use for finding relevant web pages, research papers, news articles, code repositories, or any web content by meaning rather than just keywords.
scientific-critical-thinking
davila7
Evaluate research rigor. Assess methodology, experimental design, statistical validity, biases, confounding, evidence quality (GRADE, Cochrane ROB), for critical analysis of scientific claims.