anysite Audience Analysis
Understand your audience through demographic analysis, engagement patterns, and follower behavior across Instagram, YouTube, and LinkedIn.
Overview
- Analyze follower demographics and characteristics
- Track engagement patterns and behavior
- Evaluate audience quality and authenticity
- Identify content preferences by audience segment
- Optimize targeting based on audience insights
Coverage: 60% - Focused on Instagram, YouTube, LinkedIn
Supported Platforms
- ✅ Instagram: Follower analysis, engagement patterns, audience location
- ✅ YouTube: Subscriber insights, comment demographics, viewer behavior
- ✅ LinkedIn: Connection analysis, professional demographics, engagement
Quick Start
Step 1: Identify Audience Source
Choose platform:
- Instagram:
execute("instagram", "user", "user", {"user": "..."}) + execute("instagram", "user", "user_friendships", {"user": "...", "count": 100, "type": "followers"})
- YouTube:
execute("youtube", "channel", "channel_videos", {"channel": "...", "count": 50}) + comment analysis
- LinkedIn:
execute("linkedin", "post", "get_user_posts", {"user": "...", "count": 50}) + engagement analysis
Step 2: Collect Audience Data
Gather:
- Follower/subscriber counts
- Engagement metrics
- Demographics (from profiles)
- Behavior patterns
Step 3: Analyze Patterns
Look for:
- Audience segments
- Engagement drivers
- Content preferences
- Peak activity times
Use query_cache() to filter and aggregate cached data without re-fetching.
Step 4: Generate Insights
Deliver:
- Audience profile summary
- Engagement patterns
- Content recommendations
- Targeting suggestions
Use export_data() to provide downloadable CSV/JSON files.
Common Workflows
Workflow 1: Instagram Audience Analysis
Steps:
- Get Profile Overview
execute("instagram", "user", "user", {"user": "username"})
→ Follower count (follower_count), post count (media_count), bio (description)
→ Fields: id, alias, name, url, image, follower_count, following_count, description, media_count, is_private, is_verified, is_business, category, external_url, email, location
- Analyze Followers (sample)
execute("instagram", "user", "user_friendships", {
"user": "username",
"count": 100,
"type": "followers"
})
→ Fields: id, name, alias, url, image, is_verified, is_private
For each follower (sample):
- Profile type (personal, business, creator)
- Bio indicators (interests, location)
- Follower count (influence level)
Use get_page(cache_key, offset=10, limit=10) to load more followers.
- Engagement Pattern Analysis
execute("instagram", "user", "user_posts", {"user": "username", "count": 50})
→ Fields: id, code, url, image, text, created_at, like_count, comment_count, reshare_count, view_count, type, is_paid_partnership
For each post:
execute("instagram", "post", "post_likes", {"post": "{id}", "count": 100})
→ Fields: id, name, alias, url, image, is_verified, is_private
execute("instagram", "post", "post_comments", {"post": "{id}", "count": 50})
→ Fields: id, comment_index, created_at, text, like_count, reply_count, parent_id, user
Analyze:
- Who engages most (power users)
- When engagement happens (timing via created_at)
- What content drives engagement
- Comment quality and topics
Use query_cache(cache_key, sort_by={"field": "like_count", "order": "desc"})
to find top-performing posts without re-fetching.
- Audience Segmentation
Group followers by:
- Engagement level (active, passive, ghost)
- Interests (from bios)
- Location (from profiles)
- Influence (follower counts)
Use query_cache(cache_key, conditions=[{"field": "is_verified", "op": "eq", "value": true}])
to filter verified followers.
Expected Output:
- Audience demographics summary
- Engagement patterns
- Top engaged followers
- Content preferences
Use export_data(cache_key, "csv") to provide a downloadable follower/engagement report.
Workflow 2: YouTube Audience Insights
Steps:
- Channel Overview
execute("youtube", "channel", "channel_videos", {"channel": "@channel_alias", "count": 50})
→ Fields: id, title, url, author, duration_seconds, view_count, published_at, image
Aggregate:
- Total views (sum view_count)
- Content mix (by duration, topic)
- Publishing frequency (by published_at)
Use query_cache(cache_key, aggregate={"field": "view_count", "op": "sum"})
to get total views.
- Viewer Engagement Analysis
For recent videos:
execute("youtube", "video", "video", {"video": "{video_id}"})
→ Fields: id, url, title, description, author, duration_seconds, view_count, subtitles
execute("youtube", "video", "video_comments", {"video": "{video_id}", "count": 200})
→ Fields: id, text, author, published_at, like_count, reply_count, reply_level
→ Analyze commenter patterns
Use get_page(cache_key, offset=10, limit=10) to load more comments.
- Audience Demographics from Comments
From comments analyze:
- Questions asked (knowledge level)
- Topics discussed (interests)
- Language and tone
- Technical depth
Use query_cache(cache_key, conditions=[{"field": "text", "op": "contains", "value": "?"}])
to filter questions from comments.
Use query_cache(cache_key, sort_by={"field": "like_count", "order": "desc"})
to find most popular comments.
- Content Performance by Audience
Correlate:
- High-view videos → audience interests
- High-comment videos → engagement topics
Use query_cache(cache_key, sort_by={"field": "view_count", "order": "desc"})
to rank videos by performance metrics.
Expected Output:
- Viewer interest profile
- Engagement drivers
- Content optimization insights
- Audience knowledge level
Workflow 3: LinkedIn Audience Profiling
Steps:
- Get Post History
execute("linkedin", "post", "get_user_posts", {"user": "{alias}", "count": 50})
- Analyze Engagement
For each post:
- Reaction count and types
- Comment depth
- Share count
- Post reach indicators
Use query_cache(cache_key, sort_by={"field": "reactions", "order": "desc"})
to find most engaging posts.
- Profile Engagers (if accessible)
From reactions/comments:
- Job titles
- Industries
- Companies
- Seniority levels
Use execute("linkedin", "user", "get", {"user": "{engager_alias}"})
to get full profiles of top engagers.
- Content-Audience Mapping
Correlate:
- Which topics get most engagement
- Which formats perform best
- Which audiences engage with what
- When different audiences are active
Use query_cache(cache_key, aggregate={"field": "reactions", "op": "avg"}, group_by="post_type")
to analyze performance by content type.
Expected Output:
- Professional audience profile
- Engagement patterns by topic
- Content-audience fit analysis
- Posting optimization recommendations
MCP Tools Reference
v2 Meta-Tools
| Tool |
Purpose |
discover(source, category) |
Learn available endpoints and params before execute |
execute(source, category, endpoint, params) |
Fetch data — replaces all v1 tools |
get_page(cache_key, offset, limit) |
Load more items from previous execute |
query_cache(cache_key, conditions, sort_by, aggregate, group_by) |
Filter/sort/aggregate cached data |
export_data(cache_key, format) |
Export dataset as CSV/JSON/JSONL |
Instagram Endpoints
| Endpoint |
Call |
Key Params |
| Profile |
execute("instagram", "user", "user", {"user": "..."}) |
user (alias/ID/URL) |
| Followers/Following |
execute("instagram", "user", "user_friendships", {"user": "...", "count": N, "type": "followers"}) |
user, count, type (followers|following) |
| User Posts |
execute("instagram", "user", "user_posts", {"user": "...", "count": N}) |
user, count |
| User Reels |
execute("instagram", "user", "user_reels", {"user": "...", "count": N}) |
user, count |
| Post Details |
execute("instagram", "post", "post", {"post": "{id}"}) |
post (numeric post ID) |
| Post Likes |
execute("instagram", "post", "post_likes", {"post": "{id}", "count": N}) |
post, count |
| Post Comments |
execute("instagram", "post", "post_comments", {"post": "{id}", "count": N}) |
post, count |
YouTube Endpoints
| Endpoint |
Call |
Key Params |
| Channel Videos |
execute("youtube", "channel", "channel_videos", {"channel": "...", "count": N}) |
channel (URL/@alias/ID), count (max 1000) |
| Video Details |
execute("youtube", "video", "video", {"video": "..."}) |
video (ID or URL) |
| Video Comments |
execute("youtube", "video", "video_comments", {"video": "...", "count": N}) |
video, count (max 2000) |
| Video Subtitles |
execute("youtube", "video", "video_subtitles", {"video": "...", "lang": "en"}) |
video, lang |
LinkedIn Endpoints
| Endpoint |
Call |
Key Params |
| User Posts |
execute("linkedin", "post", "get_user_posts", {"user": "..."}) |
user (alias) |
| User Profile |
execute("linkedin", "user", "get", {"user": "..."}) |
user (alias) |
Error Handling
- If
execute() returns an error with "llm_hint", follow the hint.
- If
execute() returns {"error": "Source not found", "available_sources": [...]}, check source name.
- If
execute() returns {"error": "Endpoint not found", "available_endpoints": [...]}, call discover() to find correct endpoint names.
Audience Analysis Framework
Demographic Analysis:
- Age range (inferred from profiles)
- Location (from bio/profiles)
- Interests (from bio keywords)
- Professional level (LinkedIn titles)
Behavioral Analysis:
- Engagement frequency
- Content preferences
- Peak activity times
- Interaction patterns
Quality Metrics:
- Real vs. fake followers
- Engagement authenticity
- Audience overlap
- Influence distribution
Output Formats
Chat Summary:
- Audience profile highlights
- Key engagement patterns
- Content recommendations
- Strategic insights
CSV Export via export_data(cache_key, "csv"):
- Follower sample data
- Engagement metrics
- Segment distribution
JSON Export via export_data(cache_key, "json"):
- Complete audience data
- Engagement time series
- Segmentation details
Reference Documentation
- PLATFORM_COVERAGE.md - Platform-specific audience analysis capabilities
- TOOL_MAPPING.md - Mapping analysis needs to MCP tools
Ready to understand your audience? Ask Claude to help you analyze followers, track engagement patterns, or profile audience characteristics!
1---2name: anysite-audience-analysis3description: Analyze audience demographics, engagement patterns, and follower behavior across Instagram, YouTube, and LinkedIn using anysite MCP server. Understand who engages with content, track audience growth, analyze follower quality, identify engagement patterns, and profile audience characteristics. Supports Instagram audience analysis, YouTube subscriber research, and LinkedIn connection profiling. Use when users need to understand target audiences, validate influencer audiences, analyze follower demographics, track engagement patterns, or optimize content for specific audience segments.4---56# anysite Audience Analysis78Understand your audience through demographic analysis, engagement patterns, and follower behavior across Instagram, YouTube, and LinkedIn.910## Overview1112- **Analyze follower demographics** and characteristics13- **Track engagement patterns** and behavior14- **Evaluate audience quality** and authenticity15- **Identify content preferences** by audience segment16- **Optimize targeting** based on audience insights1718**Coverage**: 60% - Focused on Instagram, YouTube, LinkedIn1920## Supported Platforms2122- ✅ **Instagram**: Follower analysis, engagement patterns, audience location23- ✅ **YouTube**: Subscriber insights, comment demographics, viewer behavior24- ✅ **LinkedIn**: Connection analysis, professional demographics, engagement2526## Quick Start2728**Step 1: Identify Audience Source**2930Choose platform:31- Instagram: `execute("instagram", "user", "user", {"user": "..."})` + `execute("instagram", "user", "user_friendships", {"user": "...", "count": 100, "type": "followers"})`32- YouTube: `execute("youtube", "channel", "channel_videos", {"channel": "...", "count": 50})` + comment analysis33- LinkedIn: `execute("linkedin", "post", "get_user_posts", {"user": "...", "count": 50})` + engagement analysis3435**Step 2: Collect Audience Data**3637Gather:38- Follower/subscriber counts39- Engagement metrics40- Demographics (from profiles)41- Behavior patterns4243**Step 3: Analyze Patterns**4445Look for:46- Audience segments47- Engagement drivers48- Content preferences49- Peak activity times5051Use `query_cache()` to filter and aggregate cached data without re-fetching.5253**Step 4: Generate Insights**5455Deliver:56- Audience profile summary57- Engagement patterns58- Content recommendations59- Targeting suggestions6061Use `export_data()` to provide downloadable CSV/JSON files.6263## Common Workflows6465### Workflow 1: Instagram Audience Analysis6667**Steps**:68691. **Get Profile Overview**70```71execute("instagram", "user", "user", {"user": "username"})72→ Follower count (follower_count), post count (media_count), bio (description)73→ Fields: id, alias, name, url, image, follower_count, following_count, description, media_count, is_private, is_verified, is_business, category, external_url, email, location74```75762. **Analyze Followers** (sample)77```78execute("instagram", "user", "user_friendships", {79 "user": "username",80 "count": 100,81 "type": "followers"82})83→ Fields: id, name, alias, url, image, is_verified, is_private8485For each follower (sample):86- Profile type (personal, business, creator)87- Bio indicators (interests, location)88- Follower count (influence level)8990Use get_page(cache_key, offset=10, limit=10) to load more followers.91```92933. **Engagement Pattern Analysis**94```95execute("instagram", "user", "user_posts", {"user": "username", "count": 50})96→ Fields: id, code, url, image, text, created_at, like_count, comment_count, reshare_count, view_count, type, is_paid_partnership9798For each post:99 execute("instagram", "post", "post_likes", {"post": "{id}", "count": 100})100 → Fields: id, name, alias, url, image, is_verified, is_private101102 execute("instagram", "post", "post_comments", {"post": "{id}", "count": 50})103 → Fields: id, comment_index, created_at, text, like_count, reply_count, parent_id, user104105Analyze:106- Who engages most (power users)107- When engagement happens (timing via created_at)108- What content drives engagement109- Comment quality and topics110111Use query_cache(cache_key, sort_by={"field": "like_count", "order": "desc"})112to find top-performing posts without re-fetching.113```1141154. **Audience Segmentation**116```117Group followers by:118- Engagement level (active, passive, ghost)119- Interests (from bios)120- Location (from profiles)121- Influence (follower counts)122123Use query_cache(cache_key, conditions=[{"field": "is_verified", "op": "eq", "value": true}])124to filter verified followers.125```126127**Expected Output**:128- Audience demographics summary129- Engagement patterns130- Top engaged followers131- Content preferences132133Use `export_data(cache_key, "csv")` to provide a downloadable follower/engagement report.134135### Workflow 2: YouTube Audience Insights136137**Steps**:1381391. **Channel Overview**140```141execute("youtube", "channel", "channel_videos", {"channel": "@channel_alias", "count": 50})142→ Fields: id, title, url, author, duration_seconds, view_count, published_at, image143144Aggregate:145- Total views (sum view_count)146- Content mix (by duration, topic)147- Publishing frequency (by published_at)148149Use query_cache(cache_key, aggregate={"field": "view_count", "op": "sum"})150to get total views.151```1521532. **Viewer Engagement Analysis**154```155For recent videos:156 execute("youtube", "video", "video", {"video": "{video_id}"})157 → Fields: id, url, title, description, author, duration_seconds, view_count, subtitles158159 execute("youtube", "video", "video_comments", {"video": "{video_id}", "count": 200})160 → Fields: id, text, author, published_at, like_count, reply_count, reply_level161 → Analyze commenter patterns162163Use get_page(cache_key, offset=10, limit=10) to load more comments.164```1651663. **Audience Demographics from Comments**167```168From comments analyze:169- Questions asked (knowledge level)170- Topics discussed (interests)171- Language and tone172- Technical depth173174Use query_cache(cache_key, conditions=[{"field": "text", "op": "contains", "value": "?"}])175to filter questions from comments.176177Use query_cache(cache_key, sort_by={"field": "like_count", "order": "desc"})178to find most popular comments.179```1801814. **Content Performance by Audience**182```183Correlate:184- High-view videos → audience interests185- High-comment videos → engagement topics186187Use query_cache(cache_key, sort_by={"field": "view_count", "order": "desc"})188to rank videos by performance metrics.189```190191**Expected Output**:192- Viewer interest profile193- Engagement drivers194- Content optimization insights195- Audience knowledge level196197### Workflow 3: LinkedIn Audience Profiling198199**Steps**:2002011. **Get Post History**202```203execute("linkedin", "post", "get_user_posts", {"user": "{alias}", "count": 50})204```2052062. **Analyze Engagement**207```208For each post:209- Reaction count and types210- Comment depth211- Share count212- Post reach indicators213214Use query_cache(cache_key, sort_by={"field": "reactions", "order": "desc"})215to find most engaging posts.216```2172183. **Profile Engagers** (if accessible)219```220From reactions/comments:221- Job titles222- Industries223- Companies224- Seniority levels225226Use execute("linkedin", "user", "get", {"user": "{engager_alias}"})227to get full profiles of top engagers.228```2292304. **Content-Audience Mapping**231```232Correlate:233- Which topics get most engagement234- Which formats perform best235- Which audiences engage with what236- When different audiences are active237238Use query_cache(cache_key, aggregate={"field": "reactions", "op": "avg"}, group_by="post_type")239to analyze performance by content type.240```241242**Expected Output**:243- Professional audience profile244- Engagement patterns by topic245- Content-audience fit analysis246- Posting optimization recommendations247248## MCP Tools Reference249250### v2 Meta-Tools251252| Tool | Purpose |253|------|---------|254| `discover(source, category)` | Learn available endpoints and params before execute |255| `execute(source, category, endpoint, params)` | Fetch data — replaces all v1 tools |256| `get_page(cache_key, offset, limit)` | Load more items from previous execute |257| `query_cache(cache_key, conditions, sort_by, aggregate, group_by)` | Filter/sort/aggregate cached data |258| `export_data(cache_key, format)` | Export dataset as CSV/JSON/JSONL |259260### Instagram Endpoints261262| Endpoint | Call | Key Params |263|----------|------|------------|264| Profile | `execute("instagram", "user", "user", {"user": "..."})` | `user` (alias/ID/URL) |265| Followers/Following | `execute("instagram", "user", "user_friendships", {"user": "...", "count": N, "type": "followers"})` | `user`, `count`, `type` (followers\|following) |266| User Posts | `execute("instagram", "user", "user_posts", {"user": "...", "count": N})` | `user`, `count` |267| User Reels | `execute("instagram", "user", "user_reels", {"user": "...", "count": N})` | `user`, `count` |268| Post Details | `execute("instagram", "post", "post", {"post": "{id}"})` | `post` (numeric post ID) |269| Post Likes | `execute("instagram", "post", "post_likes", {"post": "{id}", "count": N})` | `post`, `count` |270| Post Comments | `execute("instagram", "post", "post_comments", {"post": "{id}", "count": N})` | `post`, `count` |271272### YouTube Endpoints273274| Endpoint | Call | Key Params |275|----------|------|------------|276| Channel Videos | `execute("youtube", "channel", "channel_videos", {"channel": "...", "count": N})` | `channel` (URL/@alias/ID), `count` (max 1000) |277| Video Details | `execute("youtube", "video", "video", {"video": "..."})` | `video` (ID or URL) |278| Video Comments | `execute("youtube", "video", "video_comments", {"video": "...", "count": N})` | `video`, `count` (max 2000) |279| Video Subtitles | `execute("youtube", "video", "video_subtitles", {"video": "...", "lang": "en"})` | `video`, `lang` |280281### LinkedIn Endpoints282283| Endpoint | Call | Key Params |284|----------|------|------------|285| User Posts | `execute("linkedin", "post", "get_user_posts", {"user": "..."})` | `user` (alias) |286| User Profile | `execute("linkedin", "user", "get", {"user": "..."})` | `user` (alias) |287288### Error Handling289290- If `execute()` returns an error with `"llm_hint"`, follow the hint.291- If `execute()` returns `{"error": "Source not found", "available_sources": [...]}`, check source name.292- If `execute()` returns `{"error": "Endpoint not found", "available_endpoints": [...]}`, call `discover()` to find correct endpoint names.293294## Audience Analysis Framework295296**Demographic Analysis**:297```298- Age range (inferred from profiles)299- Location (from bio/profiles)300- Interests (from bio keywords)301- Professional level (LinkedIn titles)302```303304**Behavioral Analysis**:305```306- Engagement frequency307- Content preferences308- Peak activity times309- Interaction patterns310```311312**Quality Metrics**:313```314- Real vs. fake followers315- Engagement authenticity316- Audience overlap317- Influence distribution318```319320## Output Formats321322**Chat Summary**:323- Audience profile highlights324- Key engagement patterns325- Content recommendations326- Strategic insights327328**CSV Export** via `export_data(cache_key, "csv")`:329- Follower sample data330- Engagement metrics331- Segment distribution332333**JSON Export** via `export_data(cache_key, "json")`:334- Complete audience data335- Engagement time series336- Segmentation details337338## Reference Documentation339340- **[PLATFORM_COVERAGE.md](references/PLATFORM_COVERAGE.md)** - Platform-specific audience analysis capabilities341- **[TOOL_MAPPING.md](references/TOOL_MAPPING.md)** - Mapping analysis needs to MCP tools342343---344345**Ready to understand your audience?** Ask Claude to help you analyze followers, track engagement patterns, or profile audience characteristics!