This API is available as an MCP server — a live connection that lets Claude and other AI tools call it in real time, right inside your conversation, with no code required on your end.
Model Context Protocol (MCP) is an open standard — introduced by Anthropic in 2024 — that gives AI assistants like Claude a way to call external APIs on your behalf, live, during a conversation. Instead of copying and pasting data into a chat window, you simply ask and the AI fetches the answer from the source.
Subscribe to this API (the free plan works). Your personal MCP endpoint is then available in your Dashboard → API Keys. It looks like this:
Open claude.ai → Settings → Integrations (MCP) → Add Integration. Paste your MCP URL and give it a name. No installation needed.
Start a conversation and ask in plain language. Claude will detect the available tools from this API and call them automatically.
// Example prompts you can type in Claude "Get the latest tweets and profile info for @elonmusk" "Search Twitter for #AI news from the last 24 hours" "Show me the replies on this tweet: twitter.com/..." "Find trending topics in France right now"
Add this server to your mcp_settings.json:
{
"mcpServers": {
"scraper-tech-tiktok": {
"type": "sse",
"url": "https://mcp.scraper.tech/your-unique-key"
}
}
}
Replace your-unique-key with your key from the dashboard.
Once connected, ask in plain English — Claude handles the API calls.
Research any profile — bio, follower count, recent tweets, links.
Search tweets by keyword, hashtag, or advanced query in real time.
Track trends by country or city and analyse what's driving them.
Power AI agents that monitor accounts and act on new posts automatically.
This server uses the standard MCP SSE transport and works with any MCP client.