socialcrawl-mcp
Provides access to Amazon profiles, products, and reviews via the SocialCrawl unified API.
Provides access to Facebook profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Google profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Instagram profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Kick profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Linktree profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Pinterest profiles, pins, boards, and analytics via the SocialCrawl unified API.
Provides access to Reddit profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Snapchat profiles, stories, and analytics via the SocialCrawl unified API.
Provides access to Threads profiles, posts, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to TikTok profiles, videos, comments, search results, trending content, and analytics via the SocialCrawl unified API.
Provides access to Twitch profiles, streams, and analytics via the SocialCrawl unified API.
Provides access to YouTube profiles, videos, comments, search results, trending content, and analytics via the SocialCrawl unified API.
socialcrawl-mcp
MCP server for SocialCrawl — access 21+ social media platforms through one unified API.
What it does
SocialCrawl MCP gives AI agents instant access to 21 social media platforms and 105 endpoints through a single, unified API. Retrieve profiles, posts, comments, search results, trending content, and analytics from TikTok, Instagram, YouTube, Twitter/X, LinkedIn, Reddit, and more — no per-platform authentication required. Agents discover available endpoints dynamically, so they always work with the latest capabilities without any hardcoded platform logic.
Related MCP server: riocloud-reader
Quick Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"socialcrawl": {
"command": "npx",
"args": ["-y", "socialcrawl-mcp"],
"env": {
"SOCIALCRAWL_API_KEY": "your_api_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project root or ~/.cursor/mcp.json globally:
{
"mcpServers": {
"socialcrawl": {
"command": "npx",
"args": ["-y", "socialcrawl-mcp"],
"env": {
"SOCIALCRAWL_API_KEY": "your_api_key_here"
}
}
}
}VS Code (Claude Code)
Add to .vscode/mcp.json in your project or your user settings:
{
"servers": {
"socialcrawl": {
"type": "stdio",
"command": "npx",
"args": ["-y", "socialcrawl-mcp"],
"env": {
"SOCIALCRAWL_API_KEY": "your_api_key_here"
}
}
}
}Get Your API Key
Sign up at socialcrawl.com — no credit card required
Receive 100 free credits instantly upon registration
Copy your API key from the dashboard and paste it into your config
Available Tools
Tool | Description |
| Discover all 21 supported platforms with their slugs and endpoint counts |
| See all endpoints, required parameters, and credit costs for a specific platform |
| Make any SocialCrawl API call — fetch profiles, posts, comments, search results, and more |
| Access detailed API documentation for a platform or specific endpoint |
Example
User prompt: "Get the TikTok profile for charlidamelio"
Agent flow:
Calls
socialcrawl_list_endpointswithplatform: "tiktok"to discover available endpointsFinds
user/infoendpoint — takes ausernameparameter, costs 1 creditCalls
socialcrawl_requestwithplatform: "tiktok",endpoint: "user/info",params: { username: "charlidamelio" }Returns profile data: follower count, bio, video count, verification status, and more
Supported Platforms
Platform | Endpoints |
TikTok | 24 |
12 | |
YouTube | 11 |
12 | |
X (Twitter) | 6 |
6 | |
7 | |
Threads | 5 |
4 | |
4 | |
Truth Social | 3 |
Twitch | 2 |
Snapchat | 1 |
Kick | 1 |
Amazon | 1 |
Linktree | 1 |
Linkbio | 1 |
Linkme | 1 |
Komi | 1 |
Pillar | 1 |
Utility | 1 |
Total: 105 endpoints across 21 platforms
Credit System
Tier | Cost | Share of Endpoints |
Standard | 1 credit | ~90% |
Advanced | 5 credits | ~8% |
Premium | 10 credits | ~2% |
New accounts receive 100 free credits — enough to make 100 standard requests or explore multiple platforms before committing to a paid plan.
License
MIT — see LICENSE for details.
Available Tools
4 toolssocialcrawl_list_endpointsList Endpoints for a PlatformARead-onlyIdempotent
List all available endpoints for a specific platform with required parameters, credit costs, and response types. No API key required.
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | Platform slug (e.g., 'tiktok', 'instagram', 'youtube') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds valuable context beyond annotations, specifically the auth requirement ('No API key required') and the nature of the response (endpoint details, credit costs, response types). This helps the agent understand what to expect without duplication.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core action ('List all available endpoints') and packs all key details efficiently. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, clear schema, annotations) and no output schema, the description adequately explains what the tool returns (endpoints with parameters, costs, response types). It is complete enough for an agent to use correctly without additional documentation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides full coverage for the single parameter 'platform' with a description and enum. The description adds no additional parameter semantics beyond what the schema provides, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'List all available endpoints for a specific platform' with specific content details (required parameters, credit costs, response types). This distinguishes it from siblings like socialcrawl_list_platforms (lists platforms) and socialcrawl_request (makes requests).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use the tool: it is for discovering endpoints for a specific platform, and it notes that no API key is required. It does not explicitly compare to alternatives, but the sibling names and description make the intended use obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
socialcrawl_list_platformsList SocialCrawl PlatformsARead-onlyIdempotent
List all 21 social media platforms available through SocialCrawl. Returns platform names, endpoint counts, and descriptions. No API key required.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds value by specifying that no API key is required and detailing the return content (endpoint counts, descriptions), which is useful behavioral context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: three short sentences that front-load the main purpose and then provide key details (return fields, no API key). Every sentence adds value with no redundancy or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with no parameters, no output schema, and clear annotations, the description is complete. It states the exact number of platforms, what is returned, and that authentication is not required – all an agent needs to select and invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the input schema is empty. The description does not need to explain parameters, and the baseline for zero-parameter tools is 4. The description adds no parameter semantics because there are none to describe.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the action (List), the resource (all 21 social media platforms), and the scope (available through SocialCrawl). It also specifies what is returned (names, endpoint counts, descriptions), clearly distinguishing it from sibling tools like `socialcrawl_list_endpoints` which list endpoints instead.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use this tool: when you need a list of the 21 SocialCrawl platforms. However, it does not explicitly mention alternatives or when not to use it, such as pointing to `socialcrawl_list_endpoints` for endpoints. The usage context is implied rather than explicitly guided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
socialcrawl_requestMake a SocialCrawl API RequestARead-onlyIdempotent
Make an API request to any SocialCrawl endpoint. Fetches real-time social media data (profiles, posts, comments, search results, analytics) from 21 platforms. Requires a valid SOCIALCRAWL_API_KEY. Validates platform, resource, and parameters before making the call to avoid wasting credits.
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | Query parameters as key-value pairs (e.g., { handle: 'charlidamelio' }) | |
| platform | Yes | Platform slug (e.g., 'tiktok', 'instagram', 'youtube') | |
| resource | Yes | Resource path (e.g., 'profile', 'post/comments', 'search') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, non-destructive behavior. The description adds the requirement for a valid SOCIALCRAWLIC_API_KEY and explains that platform, resource, and parameters are validated before the call to avoid wasting credits, which is useful context. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with the core purpose front-loaded. Each sentence adds relevant information (data types, platforms, key requirement, validation) with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the schema and annotations, the description adequately covers purpose, key requirement, validation, and data types. Sibling tools handle discovery of platforms/endpoints, and no output schema exists so return value details are not required. It is sufficiently complete for a general-purpose request tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage with descriptions for platform, resource, and params. The description only mentions 'validates platform, resource, and parameters' without adding new syntax, formats, or examples beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it makes API requests to any SocialCrawl endpoint and fetches real-time social media data from 21 platforms. This distinguishes it from sibling tools that list platforms or endpoints.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by noting it requires an API key and validates inputs to avoid wasting credits, but it does not explicitly contrast with sibling tools like socialcrawl_list_platforms or socialcrawl_get_docs, nor state when to prefer this over them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
v1.0.0- First observed
socialcrawl_get_docs - First observed
socialcrawl_list_endpoints - First observed
socialcrawl_list_platforms - First observed
socialcrawl_request
TDQS
Each tool has a clearly distinct purpose: discovering platforms, discovering endpoints, making API requests, and fetching documentation. There is no overlap or ambiguity between them.
All tools share the consistent 'socialcrawl_' prefix and use verb-like names. 'list_platforms' and 'list_endpoints' follow a clear verb_noun pattern, while 'request' and 'get_docs' are slightly less uniform but still predictable and readable.
With 4 tools, the server is well-scoped for its purpose. It covers the essential workflow (discover, request, learn) without unnecessary bloat. The count is appropriate, though slightly on the smaller side for such a broad platform range.
The tool set provides full lifecycle coverage for interacting with the SocialCrawl API: listing platforms and endpoints for discovery, making requests for execution, and retrieving docs for guidance. There are no critical gaps that would prevent an agent from accomplishing its tasks.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Unified social-media data across 10 networks: profiles, posts, search, comments, cross-search.
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Social media analytics, post insights, and competitor benchmarking for AI agents.
Real-time LinkedIn, X (Twitter) and Reddit data for AI agents. Free key, self-minted, no signup.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to manage social media accounts and CRM operations, including posting, analytics, inbox management, and customer management.22Apache 2.0

riocloud-readerofficial
AlicenseNot gradedqualityDmaintenanceEnables AI agents to fetch and digest content from 30+ platforms (Twitter, YouTube, Reddit, etc.) via a unified API. Supports multi-format output, transcription, and direct Obsidian sync.18BSD 2-Clause "Simplified"- FlicenseNot gradedqualityCmaintenanceEnables AI agents to create, schedule, and manage social media posts across 10 platforms via a unified API.-
- AlicenseBqualityAmaintenanceUnified social media API for AI agents, enabling access to Facebook pages, groups, and posts with tools for page details, posts, reels, comments, and more.47791MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RidioDevelopment/socialcrawl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
socialcrawl_get_docsGet SocialCrawl DocumentationARead-onlyIdempotent
Retrieve SocialCrawl API documentation. Topics: 'overview' (compact intro), 'full' (comprehensive reference), 'authentication', 'credits', 'errors', or any platform slug (e.g., 'tiktok') for platform-specific docs. No API key required.
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior. The description adds valuable context by disclosing that no API key is required and by distinguishing output size between 'overview' (compact) and 'full' (comprehensive). This goes beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary purpose, and efficiently lists topics and auth requirements. Every sentence adds value with no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple documentation-retrieval tool with one optional parameter and strong annotations, the description is complete. It covers available topics, the default behavior implied by the schema, and the auth requirement, leaving no significant gaps given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and already lists all allowed topics including the platform slug example. The description repeats this information without adding new semantic meaning, so it meets the baseline but does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves SocialCrawl API documentation, with a specific verb and resource. It also enumerates valid topics and distinguishes itself from sibling tools like list_platforms and request by focusing on documentation retrieval.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context for when to use this tool (when API documentation is needed) and mentions that no API key is required, which aids selection. However, it does not explicitly contrast with sibling tools, though the sibling names make the differentiation apparent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.