Social Media MCP Server for AI Agents

Connect Claude, Cursor, and Windsurf to real-time social media data

The Model Context Protocol (MCP) is an open standard that lets AI assistants connect to external tools and data sources. Instead of writing API calls yourself, you tell your AI assistant what you need and it calls CreatorCrawl tools automatically.

Ask Claude to “analyze @charlidamelio’s latest videos” and it fetches the data for you.

Prerequisites

  1. Create a CreatorCrawl account at creatorcrawl.com to get 250 credits instantly, no card required.
  2. Generate an API key from the API Keys page in your dashboard.

Endpoint

CreatorCrawl uses Streamable HTTP transport at a single endpoint:

https://creatorcrawl.com/api/mcp

Claude Desktop

Open Claude Desktop settings, go to the MCP section, and add this config. Or edit claude_desktop_config.json directly:

{
  "mcpServers": {
    "creatorcrawl": {
      "url": "https://creatorcrawl.com/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Claude Code (CLI)

Run this command in your terminal:

claude mcp add creatorcrawl \
  --transport http \
  "https://creatorcrawl.com/api/mcp" \
  --header "x-api-key: YOUR_API_KEY"

Cursor

Open Cursor settings, go to MCP, and add this server config. Or add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "creatorcrawl": {
      "url": "https://creatorcrawl.com/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Windsurf

Open Windsurf settings, go to MCP, and add this server config. Or add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "creatorcrawl": {
      "serverUrl": "https://creatorcrawl.com/api/mcp",
      "headers": {
        "x-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Other MCP Clients

Any MCP client that supports Streamable HTTP transport will work. Point it to https://creatorcrawl.com/api/mcp with your API key in the x-api-key header.

Available Tools

Once connected, your AI assistant can use any of these 19 tools. Each call costs 1 credit.

ToolDescription
get_profileFetch a TikTok profile by handle
get_profile_videosGet videos from a profile with pagination
get_followersGet followers of a user
get_followingGet accounts a user follows
get_liveCheck live stream status and viewer count
get_videoGet detailed video metadata and stats
get_video_commentsGet comments on a video
get_video_transcriptExtract spoken transcript from a video
search_keywordSearch videos by keyword with filters
search_hashtagSearch videos by hashtag
search_usersSearch for TikTok users
search_topSearch top results across all content types
get_popular_videosGet trending popular videos
get_popular_creatorsGet trending popular creators
get_popular_hashtagsGet trending popular hashtags
get_popular_songsGet trending popular songs and sounds
get_trending_feedGet the trending/For You feed by region
get_songGet details for a specific song
get_song_videosGet videos using a specific song

Example Prompts

Once connected, try asking your AI assistant things like:

  • “Get me the profile stats for @charlidamelio”
  • “What are the trending hashtags on TikTok right now?”
  • “Find fitness creators with over 1M followers”
  • “Analyze the top comments on this TikTok video”
  • “Search for videos about ‘AI tutorial’ from this week”
  • “Get the transcript of this TikTok video”
  • “Show me the most popular TikTok creators by engagement”
  • “What songs are trending on TikTok in the US?”

Credits and Billing

Every MCP tool call costs 1 credit, the same as a regular API call. Your free account starts with 250 credits.

When you run out, your AI assistant will receive an error message explaining the credit limit. Buy more credits from the pricing page.

REST API

Prefer to call the API directly? Check out the full API Reference powered by Scalar, or browse individual endpoint docs like Get Profile, Search Keyword, and Trending Feed.

Frequently Asked Questions

What is an MCP server?
An MCP (Model Context Protocol) server is a standardized interface that lets AI assistants like Claude, Cursor, and Windsurf connect to external tools and data sources. Instead of writing API calls manually, your AI assistant calls tools on the MCP server automatically. CreatorCrawl's MCP server gives AI agents access to 60+ social media data tools across TikTok, Instagram, YouTube, Facebook, Twitter/X, and Reddit via Streamable HTTP transport.
How do I connect an MCP server to Claude?
Open Claude Desktop settings, go to the MCP section, and add a new server. Set the URL to https://creatorcrawl.com/api/mcp and add your API key in the x-api-key header. For Claude Code (CLI), run: claude mcp add creatorcrawl --transport http "https://creatorcrawl.com/api/mcp" --header "x-api-key: YOUR_API_KEY".
What tools does the CreatorCrawl MCP server provide?
CreatorCrawl's MCP server provides 60+ social media data tools across six platforms, including profile lookup, video metadata, comments, transcripts, search, trending content, and more. Each tool call costs 1 credit, and free accounts start with 250 credits.

Related Resources