MCP Hub
Back to servers

SocialCrawl

Access 21+ social media platforms through one unified API. Profiles, posts, search.

Registry
Updated
Apr 10, 2026

Quick Install

npx -y socialcrawl-mcp

socialcrawl-mcp

npm version License: MIT

MCP server for SocialCrawl — access 21+ social media platforms through one unified API.

What it does

SocialCrawl MCP gives AI agents instant access to 21 social media platforms and 105 endpoints through a single, unified API. Retrieve profiles, posts, comments, search results, trending content, and analytics from TikTok, Instagram, YouTube, Twitter/X, LinkedIn, Reddit, and more — no per-platform authentication required. Agents discover available endpoints dynamically, so they always work with the latest capabilities without any hardcoded platform logic.

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "socialcrawl": {
      "command": "npx",
      "args": ["-y", "socialcrawl-mcp"],
      "env": {
        "SOCIALCRAWL_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "socialcrawl": {
      "command": "npx",
      "args": ["-y", "socialcrawl-mcp"],
      "env": {
        "SOCIALCRAWL_API_KEY": "your_api_key_here"
      }
    }
  }
}

VS Code (Claude Code)

Add to .vscode/mcp.json in your project or your user settings:

{
  "servers": {
    "socialcrawl": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "socialcrawl-mcp"],
      "env": {
        "SOCIALCRAWL_API_KEY": "your_api_key_here"
      }
    }
  }
}

Get Your API Key

  1. Sign up at socialcrawl.com — no credit card required
  2. Receive 100 free credits instantly upon registration
  3. Copy your API key from the dashboard and paste it into your config

Available Tools

ToolDescription
socialcrawl_list_platformsDiscover all 21 supported platforms with their slugs and endpoint counts
socialcrawl_list_endpointsSee all endpoints, required parameters, and credit costs for a specific platform
socialcrawl_requestMake any SocialCrawl API call — fetch profiles, posts, comments, search results, and more
socialcrawl_get_docsAccess detailed API documentation for a platform or specific endpoint

Example

User prompt: "Get the TikTok profile for charlidamelio"

Agent flow:

  1. Calls socialcrawl_list_endpoints with platform: "tiktok" to discover available endpoints
  2. Finds user/info endpoint — takes a username parameter, costs 1 credit
  3. Calls socialcrawl_request with platform: "tiktok", endpoint: "user/info", params: { username: "charlidamelio" }
  4. Returns profile data: follower count, bio, video count, verification status, and more

Supported Platforms

PlatformEndpoints
TikTok24
Instagram12
YouTube11
Facebook12
X (Twitter)6
LinkedIn6
Reddit7
Threads5
Pinterest4
Google4
Truth Social3
Twitch2
Snapchat1
Kick1
Amazon1
Linktree1
Linkbio1
Linkme1
Komi1
Pillar1
Utility1

Total: 105 endpoints across 21 platforms

Credit System

TierCostShare of Endpoints
Standard1 credit~90%
Advanced5 credits~8%
Premium10 credits~2%

New accounts receive 100 free credits — enough to make 100 standard requests or explore multiple platforms before committing to a paid plan.

License

MIT — see LICENSE for details.

Reviews

No reviews yet

Sign in to write a review