anysite Brand Reputation Monitoring
Monitor and protect your brand reputation across social media platforms. Track mentions, analyze sentiment, and identify issues before they escalate.
Overview
- Track brand mentions across social platforms
- Analyze sentiment (positive, negative, neutral)
- Monitor conversations about your brand
- Identify reputation risks and crisis signals
- Measure brand health over time
Coverage: 65% - Pivoted from review platforms to social media monitoring; strong for Twitter, Reddit, Instagram, YouTube, LinkedIn
v2 Tool Interface
All data fetching uses the anysite MCP v2 universal meta-tools:
execute(source, category, endpoint, params) — fetch data from any source. Returns first page + cache_key.
get_page(cache_key, offset, limit) — paginate through results 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 for reports.
Always call discover(source, category) first if unsure about endpoint names or params.
Error Handling
v2 responses may include llm_hint fields with guidance on how to fix errors (e.g., wrong URN format, missing params). Always check llm_hint in error responses before retrying.
Supported Platforms
- Twitter/X: Real-time mentions, sentiment, viral content
- Reddit: Community discussions, detailed feedback, sentiment
- Instagram: Visual brand mentions, hashtag tracking, influencer posts
- YouTube: Video mentions, comment sentiment, brand coverage
- LinkedIn: Professional mentions, company updates, B2B sentiment
Quick Start
Step 1: Set Up Monitoring
Define:
- Brand keywords (company name, product names, misspellings)
- Platforms to monitor (Twitter, Reddit, Instagram, etc.)
- Monitoring frequency (real-time, daily, weekly)
- Alert thresholds (negative sentiment, volume spikes)
Step 2: Search for Mentions
Platform searches:
Twitter: execute("twitter", "search", "search_posts", {"query": "brand name", "count": 100})
Reddit: execute("reddit", "search", "search_posts", {"query": "brand name", "count": 100})
Instagram: execute("instagram", "search", "search_posts", {"query": "#brandname", "count": 100})
LinkedIn: execute("linkedin", "post", "search_posts", {"keywords": "brand name", "count": 50})
Each call returns a cache_key — use it for pagination, filtering, and export.
Step 3: Analyze Sentiment
For each mention:
- Classify: Positive, negative, neutral
- Categorize: Complaint, praise, question, general
- Prioritize: Urgency, reach, influence
Use query_cache(cache_key, conditions=[...], sort_by=...) to filter high-engagement or negative mentions without re-fetching.
Step 4: Take Action
Based on findings:
- Respond to negative mentions
- Amplify positive feedback
- Address product issues
- Engage with community
Common Workflows
Workflow 1: Daily Brand Monitoring
Scenario: Monitor brand mentions across all platforms daily
Steps:
- Search All Platforms
# Twitter (real-time pulse)
execute("twitter", "search", "search_posts", {"query": "brand name OR @brandhandle", "count": 100})
→ Returns cache_key_twitter; filter last 24h with from_date param (timestamp)
# Reddit (detailed discussions)
execute("reddit", "search", "search_posts", {"query": "brand name", "count": 50, "time_filter": "day"})
→ Returns cache_key_reddit
# Instagram (visual mentions)
execute("instagram", "search", "search_posts", {"query": "#brandname OR brand name", "count": 50})
→ Returns cache_key_instagram
# LinkedIn (professional mentions)
execute("linkedin", "post", "search_posts", {"keywords": "brand name", "count": 20})
→ Returns cache_key_linkedin
# YouTube (video coverage)
execute("youtube", "search", "search_videos", {"query": "brand name review OR brand name unboxing", "count": 20})
→ Returns cache_key_youtube
If any result includes next_offset, fetch more with:
get_page(cache_key, offset=next_offset, limit=50)
- Classify Mentions
Use query_cache to sort and filter cached results:
# Find high-engagement mentions across platforms
query_cache(cache_key_twitter, sort_by=[{"field": "favorite_count", "order": "desc"}])
query_cache(cache_key_reddit, sort_by=[{"field": "vote_count", "order": "desc"}])
For each mention:
Sentiment:
- Positive: Praise, recommendation, satisfaction
- Negative: Complaint, criticism, problem
- Neutral: Question, general mention, factual
Category:
- Product feedback
- Customer service issue
- Feature request
- General discussion
- Competitor comparison
- Prioritize Issues
High Priority:
- Negative + High reach (viral potential)
- Multiple complaints about same issue
- Influencer negative mention
- Legal/safety concerns
Medium Priority:
- Individual complaints
- Feature requests
- Questions
- General feedback
Low Priority:
- Positive mentions
- Neutral discussions
- General brand awareness
- Generate Daily Report
Export data for reporting:
export_data(cache_key_twitter, "csv")
export_data(cache_key_reddit, "csv")
→ Returns download URLs for each dataset
Summary:
- Total mentions (by platform)
- Sentiment breakdown (% positive/negative/neutral)
- Top issues identified
- Viral/trending mentions
- Recommended actions
Expected Output:
- Daily mention count: 50-200
- Sentiment distribution
- Top 5 issues to address
- Action items for team
Workflow 2: Crisis Detection and Management
Scenario: Identify and track potential PR crises
Steps:
- Monitor for Anomalies
Track baseline:
- Average mentions per day
- Average sentiment score
- Typical engagement levels
Alert triggers:
- Mentions >2x baseline
- Negative sentiment >50%
- Viral negative content (high engagement)
- Deep Dive on Spikes
When alert triggered:
execute("twitter", "search", "search_posts", {"query": "brand name", "count": 500})
→ Identify what's driving spike; use get_page() to load all results
execute("reddit", "search", "search_posts", {"query": "brand name", "count": 200})
→ Check community discussions
For viral posts:
# Get specific Reddit post details and comments
execute("reddit", "posts", "posts", {"post_url": "<reddit_post_url>"})
execute("reddit", "posts", "posts_comments", {"post_url": "<reddit_post_url>"})
→ Analyze reach and engagement, read comments for context
# For viral tweets, scrape the tweet URL directly
execute("webparser", "parse", "parse", {"url": "<tweet_url>"})
→ Get tweet details and engagement metrics
- Assess Crisis Severity
Severity factors:
- Volume (how many mentions)
- Velocity (how fast growing)
- Reach (influencer involvement, media coverage)
- Sentiment (how negative)
- Validity (legitimate issue vs. misunderstanding)
Use query_cache to analyze cached data:
query_cache(cache_key, aggregate=[{"function": "count"}])
→ Total mention count without re-fetching
- Track Crisis Evolution
Hourly monitoring:
- Mention volume trend
- Sentiment shifts
- Platform spread
- Media pickup
- Official response impact
- Measure Resolution
Track until:
- Volume returns to baseline
- Sentiment improves
- No new negative mentions for 24-48h
Expected Output:
- Crisis timeline
- Mention volume graph
- Sentiment tracking
- Key influencers/posts
- Response effectiveness
Workflow 3: Competitive Reputation Benchmarking
Scenario: Compare brand sentiment vs. competitors
Steps:
- Define Competitors
List 3-5 main competitors
- Gather Mentions for All
For brand + each competitor:
execute("twitter", "search", "search_posts", {"query": "<brand>", "count": 200})
execute("reddit", "search", "search_posts", {"query": "<brand>", "count": 100})
execute("linkedin", "post", "search_posts", {"keywords": "<brand>", "count": 50})
Each returns a cache_key — use get_page() if next_offset indicates more data.
- Calculate Brand Health Scores
For each brand:
Use query_cache to aggregate metrics from cached results:
query_cache(cache_key, aggregate=[{"function": "count"}])
→ Total mention volume
query_cache(cache_key, aggregate=[{"function": "avg", "field": "favorite_count"}])
→ Average engagement per mention
Mention Volume: Total mentions
Sentiment Score: (Positive - Negative) / Total
Engagement Rate: Avg engagement per mention
Share of Voice: Your mentions / Total category mentions
- Analyze Strengths/Weaknesses
Compare:
- What are competitors praised for?
- What are competitors criticized for?
- Where do we excel?
- Where do we fall short?
- Identify Opportunities
Look for:
- Unmet customer needs (complaints about competitors)
- Messaging gaps (what they're not saying)
- Product differentiation opportunities
- Customer service advantages
Expected Output:
- Competitive sentiment matrix
- Brand health scores comparison
- Strength/weakness analysis
- Strategic opportunities
MCP Tools Reference (v2)
Twitter/X
execute("twitter", "search", "search_posts", {"query": ..., "count": N}) — Find brand mentions. Supports from_date, to_date, min_likes, min_retweets, language filters.
execute("twitter", "user", "user", {"user": ...}) — Check brand profile stats
execute("twitter", "user", "user_posts", {"user": ..., "count": N}) — Monitor brand account posts
Reddit
execute("reddit", "search", "search_posts", {"query": ..., "count": N}) — Find discussions. Supports sort (relevance/hot/top/new) and time_filter (day/week/month/year).
execute("reddit", "posts", "posts", {"post_url": ...}) — Get post details and sentiment
execute("reddit", "posts", "posts_comments", {"post_url": ...}) — Deep dive on discussions
Instagram
execute("instagram", "search", "search_posts", {"query": ..., "count": N}) — Find visual mentions
execute("instagram", "post", "post", {"post": ...}) — Analyze mention engagement
execute("instagram", "post", "post_comments", {"post": ..., "count": N}) — Read feedback
YouTube
execute("youtube", "search", "search_videos", {"query": ..., "count": N}) — Find video mentions
execute("youtube", "video", "video", {"video": ...}) — Get video details
execute("youtube", "video", "video_comments", {"video": ..., "count": N}) — Analyze sentiment
LinkedIn
execute("linkedin", "post", "search_posts", {"keywords": ..., "count": N}) — Professional mentions
execute("linkedin", "company", "company_posts", {"urn": {"type": "company", "value": "<id>"}, "count": N}) — Monitor own company posts. Requires company URN from execute("linkedin", "company", "company", {"company": "<alias>"}).
Pagination, Caching & Export
get_page(cache_key, offset, limit) — Load next page of results from any execute() call
query_cache(cache_key, conditions, sort_by, aggregate, group_by) — Filter/sort/aggregate cached data without new API calls
export_data(cache_key, "csv"|"json"|"jsonl") — Export full dataset as downloadable file
Sentiment Analysis Framework
Manual Sentiment Classification:
Positive Indicators:
- "Love", "great", "amazing", "best"
- Recommendations ("highly recommend")
- Repeat purchase ("buying again")
- Comparisons ("better than X")
Negative Indicators:
- "Disappointed", "worst", "terrible", "awful"
- Problems ("doesn't work", "broken")
- Comparisons ("X is better")
- Demands ("need refund", "fix this")
Neutral Indicators:
- Questions without sentiment
- Factual statements
- General mentions
- Informational content
Sentiment Score:
Score = (Positive mentions - Negative mentions) / Total mentions x 100
+50 to +100: Excellent
+20 to +49: Good
-19 to +19: Neutral/Mixed
-20 to -49: Poor
-50 to -100: Critical
Monitoring Metrics
Volume Metrics:
- Total mentions per day/week/month
- Mentions by platform
- Trend over time
Sentiment Metrics:
- Sentiment distribution (% positive/negative/neutral)
- Sentiment score (net promoter style)
- Sentiment trend over time
Engagement Metrics:
- Average likes/shares per mention
- Viral mentions (>1000 engagements)
- Influencer mentions
Issue Tracking:
- Top complaints (by frequency)
- Product/service issues mentioned
- Feature requests
- Customer service mentions
Output Formats
Chat Summary:
- Daily mention highlights
- Sentiment overview
- Top issues identified
- Recommended actions
CSV Export (via export_data(cache_key, "csv")):
- Mention list with sentiment
- Platform, date, reach
- Issue categorization
JSON Export (via export_data(cache_key, "json")):
- Complete mention data
- Time-series sentiment
- Engagement metrics
Reference Documentation
- MONITORING_GUIDE.md - Best practices for brand monitoring, crisis response protocols, and sentiment analysis techniques
Ready to monitor your brand? Ask Claude to help you track mentions, analyze sentiment, or identify reputation risks across social platforms!
1---2name: anysite-brand-reputation3description: Monitor brand reputation and sentiment across Twitter/X, Reddit, Instagram, YouTube, and LinkedIn using anysite MCP server. Track brand mentions, analyze customer sentiment, monitor social conversations, identify reputation issues, and measure brand health. Supports social media listening, sentiment analysis, mention tracking, and crisis detection. Use when users need to monitor brand mentions, track customer sentiment, identify reputation risks, analyze brand perception, or measure social media presence and brand health across platforms.4---56# anysite Brand Reputation Monitoring78Monitor and protect your brand reputation across social media platforms. Track mentions, analyze sentiment, and identify issues before they escalate.910## Overview1112- **Track brand mentions** across social platforms13- **Analyze sentiment** (positive, negative, neutral)14- **Monitor conversations** about your brand15- **Identify reputation risks** and crisis signals16- **Measure brand health** over time1718**Coverage**: 65% - Pivoted from review platforms to social media monitoring; strong for Twitter, Reddit, Instagram, YouTube, LinkedIn1920## v2 Tool Interface2122All data fetching uses the anysite MCP v2 universal meta-tools:2324- **`execute(source, category, endpoint, params)`** — fetch data from any source. Returns first page + `cache_key`.25- **`get_page(cache_key, offset, limit)`** — paginate through results when `next_offset` is returned.26- **`query_cache(cache_key, conditions, sort_by, aggregate, group_by)`** — filter, sort, or aggregate cached data without new API calls.27- **`export_data(cache_key, format)`** — export full dataset as CSV, JSON, or JSONL for reports.2829Always call `discover(source, category)` first if unsure about endpoint names or params.3031### Error Handling3233v2 responses may include `llm_hint` fields with guidance on how to fix errors (e.g., wrong URN format, missing params). Always check `llm_hint` in error responses before retrying.3435## Supported Platforms3637- **Twitter/X**: Real-time mentions, sentiment, viral content38- **Reddit**: Community discussions, detailed feedback, sentiment39- **Instagram**: Visual brand mentions, hashtag tracking, influencer posts40- **YouTube**: Video mentions, comment sentiment, brand coverage41- **LinkedIn**: Professional mentions, company updates, B2B sentiment4243## Quick Start4445**Step 1: Set Up Monitoring**4647Define:48- Brand keywords (company name, product names, misspellings)49- Platforms to monitor (Twitter, Reddit, Instagram, etc.)50- Monitoring frequency (real-time, daily, weekly)51- Alert thresholds (negative sentiment, volume spikes)5253**Step 2: Search for Mentions**5455Platform searches:56```57Twitter: execute("twitter", "search", "search_posts", {"query": "brand name", "count": 100})58Reddit: execute("reddit", "search", "search_posts", {"query": "brand name", "count": 100})59Instagram: execute("instagram", "search", "search_posts", {"query": "#brandname", "count": 100})60LinkedIn: execute("linkedin", "post", "search_posts", {"keywords": "brand name", "count": 50})61```6263Each call returns a `cache_key` — use it for pagination, filtering, and export.6465**Step 3: Analyze Sentiment**6667For each mention:68- Classify: Positive, negative, neutral69- Categorize: Complaint, praise, question, general70- Prioritize: Urgency, reach, influence7172Use `query_cache(cache_key, conditions=[...], sort_by=...)` to filter high-engagement or negative mentions without re-fetching.7374**Step 4: Take Action**7576Based on findings:77- Respond to negative mentions78- Amplify positive feedback79- Address product issues80- Engage with community8182## Common Workflows8384### Workflow 1: Daily Brand Monitoring8586**Scenario**: Monitor brand mentions across all platforms daily8788**Steps**:89901. **Search All Platforms**91```92# Twitter (real-time pulse)93execute("twitter", "search", "search_posts", {"query": "brand name OR @brandhandle", "count": 100})94→ Returns cache_key_twitter; filter last 24h with from_date param (timestamp)9596# Reddit (detailed discussions)97execute("reddit", "search", "search_posts", {"query": "brand name", "count": 50, "time_filter": "day"})98→ Returns cache_key_reddit99100# Instagram (visual mentions)101execute("instagram", "search", "search_posts", {"query": "#brandname OR brand name", "count": 50})102→ Returns cache_key_instagram103104# LinkedIn (professional mentions)105execute("linkedin", "post", "search_posts", {"keywords": "brand name", "count": 20})106→ Returns cache_key_linkedin107108# YouTube (video coverage)109execute("youtube", "search", "search_videos", {"query": "brand name review OR brand name unboxing", "count": 20})110→ Returns cache_key_youtube111```112113If any result includes `next_offset`, fetch more with:114```115get_page(cache_key, offset=next_offset, limit=50)116```1171182. **Classify Mentions**119120Use `query_cache` to sort and filter cached results:121```122# Find high-engagement mentions across platforms123query_cache(cache_key_twitter, sort_by=[{"field": "favorite_count", "order": "desc"}])124query_cache(cache_key_reddit, sort_by=[{"field": "vote_count", "order": "desc"}])125126For each mention:127128Sentiment:129- Positive: Praise, recommendation, satisfaction130- Negative: Complaint, criticism, problem131- Neutral: Question, general mention, factual132133Category:134- Product feedback135- Customer service issue136- Feature request137- General discussion138- Competitor comparison139```1401413. **Prioritize Issues**142```143High Priority:144- Negative + High reach (viral potential)145- Multiple complaints about same issue146- Influencer negative mention147- Legal/safety concerns148149Medium Priority:150- Individual complaints151- Feature requests152- Questions153- General feedback154155Low Priority:156- Positive mentions157- Neutral discussions158- General brand awareness159```1601614. **Generate Daily Report**162163Export data for reporting:164```165export_data(cache_key_twitter, "csv")166export_data(cache_key_reddit, "csv")167→ Returns download URLs for each dataset168169Summary:170- Total mentions (by platform)171- Sentiment breakdown (% positive/negative/neutral)172- Top issues identified173- Viral/trending mentions174- Recommended actions175```176177**Expected Output**:178- Daily mention count: 50-200179- Sentiment distribution180- Top 5 issues to address181- Action items for team182183### Workflow 2: Crisis Detection and Management184185**Scenario**: Identify and track potential PR crises186187**Steps**:1881891. **Monitor for Anomalies**190```191Track baseline:192- Average mentions per day193- Average sentiment score194- Typical engagement levels195196Alert triggers:197- Mentions >2x baseline198- Negative sentiment >50%199- Viral negative content (high engagement)200```2012022. **Deep Dive on Spikes**203```204When alert triggered:205206execute("twitter", "search", "search_posts", {"query": "brand name", "count": 500})207→ Identify what's driving spike; use get_page() to load all results208209execute("reddit", "search", "search_posts", {"query": "brand name", "count": 200})210→ Check community discussions211212For viral posts:213 # Get specific Reddit post details and comments214 execute("reddit", "posts", "posts", {"post_url": "<reddit_post_url>"})215 execute("reddit", "posts", "posts_comments", {"post_url": "<reddit_post_url>"})216 → Analyze reach and engagement, read comments for context217218 # For viral tweets, scrape the tweet URL directly219 execute("webparser", "parse", "parse", {"url": "<tweet_url>"})220 → Get tweet details and engagement metrics221```2222233. **Assess Crisis Severity**224```225Severity factors:226- Volume (how many mentions)227- Velocity (how fast growing)228- Reach (influencer involvement, media coverage)229- Sentiment (how negative)230- Validity (legitimate issue vs. misunderstanding)231232Use query_cache to analyze cached data:233query_cache(cache_key, aggregate=[{"function": "count"}])234→ Total mention count without re-fetching235```2362374. **Track Crisis Evolution**238```239Hourly monitoring:240- Mention volume trend241- Sentiment shifts242- Platform spread243- Media pickup244- Official response impact245```2462475. **Measure Resolution**248```249Track until:250- Volume returns to baseline251- Sentiment improves252- No new negative mentions for 24-48h253```254255**Expected Output**:256- Crisis timeline257- Mention volume graph258- Sentiment tracking259- Key influencers/posts260- Response effectiveness261262### Workflow 3: Competitive Reputation Benchmarking263264**Scenario**: Compare brand sentiment vs. competitors265266**Steps**:2672681. **Define Competitors**269```270List 3-5 main competitors271```2722732. **Gather Mentions for All**274```275For brand + each competitor:276 execute("twitter", "search", "search_posts", {"query": "<brand>", "count": 200})277 execute("reddit", "search", "search_posts", {"query": "<brand>", "count": 100})278 execute("linkedin", "post", "search_posts", {"keywords": "<brand>", "count": 50})279280Each returns a cache_key — use get_page() if next_offset indicates more data.281```2822833. **Calculate Brand Health Scores**284```285For each brand:286287Use query_cache to aggregate metrics from cached results:288 query_cache(cache_key, aggregate=[{"function": "count"}])289 → Total mention volume290291 query_cache(cache_key, aggregate=[{"function": "avg", "field": "favorite_count"}])292 → Average engagement per mention293294Mention Volume: Total mentions295Sentiment Score: (Positive - Negative) / Total296Engagement Rate: Avg engagement per mention297Share of Voice: Your mentions / Total category mentions298```2993004. **Analyze Strengths/Weaknesses**301```302Compare:303- What are competitors praised for?304- What are competitors criticized for?305- Where do we excel?306- Where do we fall short?307```3083095. **Identify Opportunities**310```311Look for:312- Unmet customer needs (complaints about competitors)313- Messaging gaps (what they're not saying)314- Product differentiation opportunities315- Customer service advantages316```317318**Expected Output**:319- Competitive sentiment matrix320- Brand health scores comparison321- Strength/weakness analysis322- Strategic opportunities323324## MCP Tools Reference (v2)325326### Twitter/X327- `execute("twitter", "search", "search_posts", {"query": ..., "count": N})` — Find brand mentions. Supports `from_date`, `to_date`, `min_likes`, `min_retweets`, `language` filters.328- `execute("twitter", "user", "user", {"user": ...})` — Check brand profile stats329- `execute("twitter", "user", "user_posts", {"user": ..., "count": N})` — Monitor brand account posts330331### Reddit332- `execute("reddit", "search", "search_posts", {"query": ..., "count": N})` — Find discussions. Supports `sort` (relevance/hot/top/new) and `time_filter` (day/week/month/year).333- `execute("reddit", "posts", "posts", {"post_url": ...})` — Get post details and sentiment334- `execute("reddit", "posts", "posts_comments", {"post_url": ...})` — Deep dive on discussions335336### Instagram337- `execute("instagram", "search", "search_posts", {"query": ..., "count": N})` — Find visual mentions338- `execute("instagram", "post", "post", {"post": ...})` — Analyze mention engagement339- `execute("instagram", "post", "post_comments", {"post": ..., "count": N})` — Read feedback340341### YouTube342- `execute("youtube", "search", "search_videos", {"query": ..., "count": N})` — Find video mentions343- `execute("youtube", "video", "video", {"video": ...})` — Get video details344- `execute("youtube", "video", "video_comments", {"video": ..., "count": N})` — Analyze sentiment345346### LinkedIn347- `execute("linkedin", "post", "search_posts", {"keywords": ..., "count": N})` — Professional mentions348- `execute("linkedin", "company", "company_posts", {"urn": {"type": "company", "value": "<id>"}, "count": N})` — Monitor own company posts. Requires company URN from `execute("linkedin", "company", "company", {"company": "<alias>"})`.349350### Pagination, Caching & Export351- `get_page(cache_key, offset, limit)` — Load next page of results from any execute() call352- `query_cache(cache_key, conditions, sort_by, aggregate, group_by)` — Filter/sort/aggregate cached data without new API calls353- `export_data(cache_key, "csv"|"json"|"jsonl")` — Export full dataset as downloadable file354355## Sentiment Analysis Framework356357**Manual Sentiment Classification**:358359**Positive Indicators**:360- "Love", "great", "amazing", "best"361- Recommendations ("highly recommend")362- Repeat purchase ("buying again")363- Comparisons ("better than X")364365**Negative Indicators**:366- "Disappointed", "worst", "terrible", "awful"367- Problems ("doesn't work", "broken")368- Comparisons ("X is better")369- Demands ("need refund", "fix this")370371**Neutral Indicators**:372- Questions without sentiment373- Factual statements374- General mentions375- Informational content376377**Sentiment Score**:378```379Score = (Positive mentions - Negative mentions) / Total mentions x 100380381+50 to +100: Excellent382+20 to +49: Good383-19 to +19: Neutral/Mixed384-20 to -49: Poor385-50 to -100: Critical386```387388## Monitoring Metrics389390**Volume Metrics**:391- Total mentions per day/week/month392- Mentions by platform393- Trend over time394395**Sentiment Metrics**:396- Sentiment distribution (% positive/negative/neutral)397- Sentiment score (net promoter style)398- Sentiment trend over time399400**Engagement Metrics**:401- Average likes/shares per mention402- Viral mentions (>1000 engagements)403- Influencer mentions404405**Issue Tracking**:406- Top complaints (by frequency)407- Product/service issues mentioned408- Feature requests409- Customer service mentions410411## Output Formats412413**Chat Summary**:414- Daily mention highlights415- Sentiment overview416- Top issues identified417- Recommended actions418419**CSV Export** (via `export_data(cache_key, "csv")`):420- Mention list with sentiment421- Platform, date, reach422- Issue categorization423424**JSON Export** (via `export_data(cache_key, "json")`):425- Complete mention data426- Time-series sentiment427- Engagement metrics428429## Reference Documentation430431- **[MONITORING_GUIDE.md](references/MONITORING_GUIDE.md)** - Best practices for brand monitoring, crisis response protocols, and sentiment analysis techniques432433---434435**Ready to monitor your brand?** Ask Claude to help you track mentions, analyze sentiment, or identify reputation risks across social platforms!