loading…
Search for a command to run...
loading…
It is a social media MCP that allows the user to connect their agents to multiple social media platforms.
It is a social media MCP that allows the user to connect their agents to multiple social media platforms.
Official Model Context Protocol (MCP) server for CreatorCrawl. Gives any MCP-compatible AI agent — Claude Desktop, Claude Code, Cursor, Windsurf, Zed, and more — 60+ tools for TikTok, Instagram, YouTube, LinkedIn, Twitter/X, and Reddit.
Profiles, posts, comments, transcripts, ads, search, and trending data as structured JSON.
# Claude Code
claude mcp add creatorcrawl \
--env CREATORCRAWL_API_KEY=YOUR_API_KEY \
-- npx -y @creatorcrawl/mcp
# Claude Desktop / Cursor / Windsurf — add to your MCP config
{
"mcpServers": {
"creatorcrawl": {
"command": "npx",
"args": ["-y", "@creatorcrawl/mcp"],
"env": { "CREATORCRAWL_API_KEY": "YOUR_API_KEY" }
}
}
}
# Claude Code
claude mcp add creatorcrawl \
--transport streamable-http \
--header x-api-key=YOUR_API_KEY \
-- https://app.creatorcrawl.com/api/mcp
{
"mcpServers": {
"creatorcrawl": {
"type": "streamable-http",
"url": "https://app.creatorcrawl.com/api/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}
Sign up at creatorcrawl.com — 250 free credits on signup, no card required.
60+ tools across six platforms:
Each tool returns structured JSON. See the full schema at https://creatorcrawl.com/mcp-docs.
As of 0.2.0, all tools return a canonical normalized shape across every platform:
snake_case fields everywhere (follower_count, created_at, avatar_url)2025-04-12T15:30:00Z){ data, page?, meta }outputSchema (MCP 2025-06-18 spec)content (LLM-readable summary) and structuredContent (full typed envelope){
"content": [{ "type": "text", "text": "Found creator @mrbeast (YouTube) — 320M followers." }],
"structuredContent": {
"data": {
"id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
"handle": "mrbeast",
"name": "MrBeast",
"bio": "SUBSCRIBE FOR A COOKIE!",
"url": "https://youtube.com/@mrbeast",
"avatar_url": "https://...",
"verified": true,
"follower_count": 320000000,
"post_count": 812,
"view_count": 67000000000,
"platform": "youtube"
},
"meta": { "platform": "youtube", "fetched_at": "2026-05-15T12:00:00Z" }
}
}
{
"content": [{ "type": "text", "text": "20 posts from @creator." }],
"structuredContent": {
"data": [
{
"id": "7349...",
"url": "https://www.tiktok.com/@creator/video/7349...",
"type": "video",
"created_at": "2026-04-30T18:14:22Z",
"text": "Post caption...",
"media": [{ "type": "video", "url": "...", "thumbnail_url": "..." }],
"view_count": 1240000,
"like_count": 98000,
"comment_count": 1200,
"share_count": 4500,
"author": { "id": "...", "handle": "creator", "name": "Creator", "platform": "tiktok" },
"platform": "tiktok"
}
],
"page": { "cursor": "eyJvZmZzZXQiOjIwfQ==", "has_more": true },
"meta": { "platform": "tiktok", "fetched_at": "2026-05-15T12:00:00Z" }
}
}
Breaking change in 0.2.0: field names, casing, and envelope structure changed. If you were parsing the previous response shape, update your consumers.
| Env var | Required | Description |
|---|---|---|
CREATORCRAWL_API_KEY |
yes | Your CreatorCrawl API key |
CREATORCRAWL_MCP_URL |
no | Override the upstream URL (default: https://app.creatorcrawl.com/api/mcp) |
Pay-as-you-go credits starting at $29 for 5,000 calls. Most tools cost 1 credit per call. Full pricing at creatorcrawl.com/#pricing.
MIT
Выполни в терминале:
claude mcp add creatorcrawl -- npx