Integrations
MCP
Model Context Protocol server for AI-powered social media scraping.
Overview
The Scrape Creators MCP server lets AI assistants like Cursor, Claude, and VS Code Copilot directly call our API to extract public social media data. It supports OAuth authentication (for Cursor, Claude) and direct API key authentication (for Claude Desktop and other clients).
MCP Server URL: https://api.scrapecreators.com/mcp
Quick Install
Cursor
- Open Cursor Settings
- Go to Tools & MCP
- Click + Add new MCP server
- Paste the following configuration:
{
"mcpServers": {
"scrape-creators": {
"url": "https://api.scrapecreators.com/mcp"
}
}
}- Save and go back to Tools & MCP
- When prompted, click Connect to complete the OAuth flow — you'll enter your Scrape Creators API key in the browser
Claude / Claude Code
Connect directly from Claude without manually configuring an API key:
- Go to Settings → Connectors
- Click Add custom connector, enter
Scrape Creatorsas the name andhttps://api.scrapecreators.com/mcpas the URL - Click Authorize when prompted to complete the OAuth flow
For Claude Code, run:
claude mcp add --transport http scrape-creators https://api.scrapecreators.com/mcpThen run /mcp and select Authenticate for Scrape Creators to complete the OAuth flow.
VS Code
Add the following to your VS Code settings.json:
{
"mcp": {
"servers": {
"scrape-creators": {
"url": "https://api.scrapecreators.com/mcp"
}
}
}
}Authentication
The MCP server supports two authentication methods:
- OAuth (recommended) — Used by Cursor, Claude, and VS Code. You'll be redirected to enter your API key in the browser during setup.
- Direct API key — For Claude Desktop and other clients that support custom headers. Pass your key via the
x-api-keyheader.
🔑Get your API key at app.scrapecreators.com
