Social Media MCP Server
Give any MCP-compatible AI agent access to live social media data. The CreatorCrawl MCP server exposes all API endpoints as tools that LLMs can call directly. No API key management on the client side.
Key Features
- Streamable HTTP transport at a single endpoint
- 60+ social media data endpoints exposed as MCP tools
- Works with Claude, Cursor, Windsurf, and any MCP-compatible client
- No local server to install or maintain
- Authenticated with your CreatorCrawl API key
Code Example
{
"mcpServers": {
"creatorcrawl": {
"url": "https://creatorcrawl.com/api/mcp",
"transport": "streamable-http",
"headers": {
"x-api-key": "your_api_key_here"
}
}
}
}Getting Started
Get your API key
Sign up at creatorcrawl.com and copy your API key from the dashboard. You get 250 free credits, no card required.
Add the MCP config
Add the CreatorCrawl MCP server to your MCP client config. The endpoint is https://creatorcrawl.com/api/mcp with streamable HTTP transport.
Set your API key
Pass your API key in the x-api-key header of the MCP config. The server authenticates every request with this key.
Start using social media tools
Your AI agent can now call social media data tools like get_profile, get_video, search_users, and more across all platforms. See /mcp-docs for the full tool reference.
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open standard that lets AI models call external tools and data sources. CreatorCrawl exposes all its social media data endpoints as MCP tools that any compatible AI client can use.
Do I need to run a local server?
No. The CreatorCrawl MCP server is hosted and available at https://creatorcrawl.com/api/mcp. Just point your MCP client to this URL and authenticate with your API key.
Which MCP clients are supported?
Any client that supports the MCP streamable HTTP transport. This includes Claude Desktop, Cursor, Windsurf, and other MCP-compatible tools.
Does MCP usage consume credits?
Yes. Each MCP tool call maps to an API endpoint call and costs the same number of credits as calling the REST API directly.
Where can I find the full MCP documentation?
Visit creatorcrawl.com/mcp-docs for the complete MCP tool reference, including all available tools, parameters, and response formats.