CreatorCrawl
OfficialProvides tools for retrieving Instagram profiles, posts, reels, comments, transcripts, story highlights, and embed data.
Provides tools for searching Reddit, retrieving subreddit details, posts, and post comments.
Provides tools for retrieving TikTok profiles, videos, comments, transcripts, search, popular creators, hashtags, songs, and trending feed.
Provides tools for retrieving YouTube channels, videos, shorts, transcripts, comments, playlists, and trending shorts.
@creatorcrawl/mcp
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.
Two ways to run it
Stdio (local install) — for desktop clients
# 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" }
}
}
}Streamable HTTP (hosted) — for cloud agents
# 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" }
}
}
}Related MCP server: postfast-mcp
Get an API key
Sign up at creatorcrawl.com — 250 free credits on signup, no card required.
Tool reference
60+ tools across six platforms:
TikTok: profile, profile-videos, video-info, transcript, search-keyword, search-users, comments, popular-creators, popular-hashtags, popular-songs, popular-videos, trending-feed
Instagram: profile, basic-profile, posts, reels, post-info, comments, transcript, story-highlights, highlights-details, search-reels, embed
YouTube: channel, channel-videos, channel-shorts, video, search, search-hashtag, transcript, comments, playlist, trending-shorts
LinkedIn: profile, company, company-posts, post, ads-search, ad
Twitter / X: profile, tweet, user-tweets, transcript, community, community-tweets
Reddit: search, subreddit-details, subreddit-posts, subreddit-search, post-comments
Each tool returns structured JSON. See the full schema at https://creatorcrawl.com/mcp-docs.
Response shape (v0.2.0+)
As of 0.2.0, all tools return a canonical normalized shape across every platform:
snake_casefields everywhere (follower_count,created_at,avatar_url)ISO 8601 timestamps (
2025-04-12T15:30:00Z)Unified envelope:
{ data, page?, meta }Every tool advertises an
outputSchema(MCP 2025-06-18 spec)Tool calls return both
content(LLM-readable summary) andstructuredContent(full typed envelope)
Example tool call result
{
"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" }
}
}Example list/search result with pagination
{
"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.
Configuration
Env var | Required | Description |
| yes | Your CreatorCrawl API key |
| no | Override the upstream URL (default: |
Pricing
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.
Companion packages
TypeScript SDK:
@creatorcrawl/sdk— direct API client for code workflowsAgent Skill:
creatorcrawl/creatorcrawl-skill— teaches agents how to use the MCP server effectively
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Schedule, publish, and analyze social media posts across 11 platforms from any MCP client.
Schedule, publish, and analyze social posts across 11 platforms from any MCP client.
Social media MCP: publish, schedule & analyze posts on TikTok, Instagram, YouTube, LinkedIn & X
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that enables integration with Moltbook, a social network designed for AI agents. It allows users to view feeds, create posts and comments, vote on content, and manage agent profiles through natural language.818 npm4MIT
- AlicenseAqualityBmaintenanceSchedule and manage social media posts across 10 platforms (Instagram, Facebook, TikTok, X, LinkedIn, YouTube, Threads, Pinterest, Bluesky, Telegram) from any MCP-compatible AI assistant. Supports batch posting, media uploads, analytics, and platform-specific features like Reels, Shorts, and carousels.1159 npm5MIT

@agentgram/mcp-serverofficial
AlicenseAqualityBmaintenanceEnables AI agents to interact with AgentGram, the social network for AI agents, through native MCP tools for posting, commenting, voting, and managing identity.228 npm1MIT- AlicenseNot gradedqualityDmaintenanceSocial media API and MCP server for AI agents that enables publishing to X, Instagram, LinkedIn, Reddit, Bluesky, and Threads from a single endpoint.13 npmMIT