Skip to main content
Glama
RidioDevelopment

socialcrawl-mcp

socialcrawl-mcp

npm version License: MIT

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

  1. Sign up at socialcrawl.com — no credit card required

  2. Receive 100 free credits instantly upon registration

  3. Copy your API key from the dashboard and paste it into your config

Available Tools

Tool

Description

socialcrawl_list_platforms

Discover all 21 supported platforms with their slugs and endpoint counts

socialcrawl_list_endpoints

See all endpoints, required parameters, and credit costs for a specific platform

socialcrawl_request

Make any SocialCrawl API call — fetch profiles, posts, comments, search results, and more

socialcrawl_get_docs

Access detailed API documentation for a platform or specific endpoint

Example

User prompt: "Get the TikTok profile for charlidamelio"

Agent flow:

  1. Calls socialcrawl_list_endpoints with platform: "tiktok" to discover available endpoints

  2. Finds user/info endpoint — takes a username parameter, costs 1 credit

  3. Calls socialcrawl_request with platform: "tiktok", endpoint: "user/info", params: { username: "charlidamelio" }

  4. Returns profile data: follower count, bio, video count, verification status, and more

Supported Platforms

Platform

Endpoints

TikTok

24

Instagram

12

YouTube

11

Facebook

12

X (Twitter)

6

LinkedIn

6

Reddit

7

Threads

5

Pinterest

4

Google

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 tools
socialcrawl_get_docsGet SocialCrawl DocumentationA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicNoDocumentation topic: 'overview', 'full', 'authentication', 'credits', 'errors', or a platform slug (e.g., 'tiktok')overview

TDQS

A4.3/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

socialcrawl_list_endpointsList Endpoints for a PlatformA
Read-onlyIdempotent

List all available endpoints for a specific platform with required parameters, credit costs, and response types. No API key required.

ParametersJSON Schema
NameRequiredDescriptionDefault
platformYesPlatform slug (e.g., 'tiktok', 'instagram', 'youtube')

TDQS

A4.3/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 PlatformsA
Read-onlyIdempotent

List all 21 social media platforms available through SocialCrawl. Returns platform names, endpoint counts, and descriptions. No API key required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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 RequestA
Read-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.

ParametersJSON Schema
NameRequiredDescriptionDefault
paramsNoQuery parameters as key-value pairs (e.g., { handle: 'charlidamelio' })
platformYesPlatform slug (e.g., 'tiktok', 'instagram', 'youtube')
resourceYesResource path (e.g., 'profile', 'post/comments', 'search')

TDQS

A4/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

  1. 4 tool updatesv1.0.0
    • First observedsocialcrawl_get_docs
    • First observedsocialcrawl_list_endpoints
    • First observedsocialcrawl_list_platforms
    • First observedsocialcrawl_request

TDQS

A4.2/5.0
Disambiguation5/5

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.

Naming Consistency4/5

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.

Tool Count4/5

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.

Completeness5/5

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

ActivityInactive
ResponsivenessSyncing

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

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to manage social media accounts and CRM operations, including posting, analytics, inbox management, and customer management.
    22
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables 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.
    18
    BSD 2-Clause "Simplified"

Latest Blog Posts

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