🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

social-media-analytics

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

social-media-analytics

MCP server for social media analytics - profile analysis, hashtag research, content calendars, competitor analysis, and viral scoring

latest
Source
npmnpm
Version
1.1.4
Version published
Maintainers
1
Created
Source

Social Media Analytics

An MCP (Model Context Protocol) server for social media analysis and marketing optimization. Analyze profiles, research hashtags, generate content calendars, benchmark competitors, and score content for viral potential -- all from your AI assistant.

Pricing

PlanPriceFeatures
Basic$10/moProfile analysis, hashtag research, viral scoring — Buy →
Pro$15/moEverything in Basic + content calendars, competitor analysis, priority support — Buy →

Free trial: 3 calls total (shared across all tools), no credit card. License keys are emailed instantly after checkout. Activate via the LICENSE_KEY environment variable. More info: aivp-mcp.vercel.app

Features

  • Profile Analysis -- Scrape and analyze any public social media profile across Twitter/X, Instagram, YouTube, LinkedIn, and TikTok
  • Hashtag Research -- Estimate popularity, competition level, related hashtags, and get platform-specific recommendations
  • Content Calendar -- Generate 30-day content calendars with post ideas, captions, optimal timing, and hashtag suggestions
  • Competitor Analysis -- Side-by-side comparison of 2-5 competitors with follower, engagement, and strategy benchmarks
  • Viral Scoring -- Score any post concept 0-100 for virality potential with emotional triggers and improvement suggestions

Installation

No install step needed — run straight from npm:

npx -y social-media-analytics

Or install globally:

npm install -g social-media-analytics

Configure with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "social-media-analytics": {
      "command": "npx",
      "args": ["-y", "social-media-analytics"],
      "env": { "LICENSE_KEY": "<your license key — omit for free trial>" }
    }
  }
}

Configure with Claude Code

claude mcp add social-media-analytics -- npx -y social-media-analytics

Run with SSE transport (Streamable HTTP)

# Start the SSE server (default port 3000)
npx -y social-media-analytics --sse

# Or specify a custom port
PORT=8080 npx -y social-media-analytics --sse

The Streamable HTTP endpoint is available at http://localhost:3000/mcp.

Tools

analyze_profile

Analyze a social media profile from its URL. Extracts publicly available data including profile name, bio, follower count, post frequency, engagement rate, and content themes.

Input:

{
  "url": "https://twitter.com/elonmusk"
}

Supported platforms: Twitter/X, Instagram, YouTube, LinkedIn, TikTok

analyze_hashtags

Analyze hashtags for estimated popularity, related tags, best posting times, competition level, and platform-specific recommendations.

Input:

{
  "hashtags": ["#ai", "#startup", "#buildinpublic"],
  "platforms": ["twitter", "linkedin"]
}

generate_content_calendar

Generate a 30-day content calendar with post ideas, captions, optimal posting times, content mix recommendations, and hashtag suggestions.

Input:

{
  "niche": "AI startups",
  "platforms": ["twitter", "linkedin", "instagram"],
  "posts_per_week": 5
}

analyze_competitors

Compare 2-5 competitor profiles side-by-side with follower comparison, content strategy analysis, posting frequency, and engagement benchmarks.

Input:

{
  "competitors": [
    "https://twitter.com/competitor1",
    "https://twitter.com/competitor2",
    "https://twitter.com/competitor3"
  ]
}

viral_score

Score post text or concepts for virality potential (0-100). Identifies emotional triggers, shareability factors, and provides improvement suggestions with platform-specific optimization tips.

Input:

{
  "text": "Stop scrolling. Here are 5 things I wish I knew before starting my SaaS business:\n\n1. Your first 100 users matter more than your next 10,000\n2. Ship weekly, not monthly\n3. Talk to users every single day\n4. Pricing is a feature\n5. Distribution > Product\n\nWhich one resonates most?",
  "platform": "linkedin"
}

Platform Support

PlatformProfile AnalysisHashtag ResearchContent CalendarCompetitor Analysis
Twitter/XYesYesYesYes
InstagramYesYesYesYes
YouTubeYesYesYesYes
LinkedInYesYesYesYes
TikTokYesYesYesYes

How It Works

The server uses web scraping (basic HTML fetch + parsing) for publicly available data. No API keys or social media account connections required.

When live scraping is blocked (common with social media sites that require JavaScript rendering), the server falls back to intelligent estimation based on handle heuristics and platform benchmarks.

This makes the server:

  • No API keys needed -- works out of the box
  • Privacy-friendly -- no persistent data storage
  • Platform-agnostic -- works with all major social platforms
  • Always available -- no rate limits or API dependencies

License

MIT

Keywords

mcp

FAQs

Package last updated on 04 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts