DocsIntegrationsPlaygroundPricing
Get API Key
MCP Server

MCP Server

The Model Context Protocol (MCP) by Anthropic lets AI assistants call external tools. Install the SupaCrawlX MCP server and your AI can extract transcripts, scrape web pages, and search YouTube directly from the chat window.

Free for MCP users

Every account includes 100 free credits each month — no credit card required — so you can wire SupaCrawlX into Claude, Cursor, or Windsurf and start running tools right away.

Available Tools

get_transcript

Extract transcript from YouTube, TikTok, Instagram, Facebook, or Twitter

get_metadata

Get video or post metadata from any supported platform

scrape_url

Scrape a URL and return clean Markdown content

crawl_site

Crawl an entire website and return all pages as Markdown (async)

get_web_map

Get all links from a website by parsing its sitemap

search_youtube

Search YouTube and return video results with metadata

get_youtube_channel

Get YouTube channel info including subscriber count

get_youtube_playlist

Get videos and metadata from a YouTube playlist

analyze_video

Extract structured data from any video using AI (Pro+)

Quick Install

terminal
SUPACRAWLX_API_KEY=your_key npx @supacrawlx/mcp-server

Setup by AI Tool

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.jsonWin: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "supacrawlx": {
      "command": "npx",
      "args": ["-y", "@supacrawlx/mcp-server"],
      "env": {
        "SUPACRAWLX_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Cursor

macOS: .cursor/mcp.jsonWin: .cursor/mcp.json

{
  "mcpServers": {
    "supacrawlx": {
      "command": "npx",
      "args": ["-y", "@supacrawlx/mcp-server"],
      "env": {
        "SUPACRAWLX_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Windsurf

macOS: ~/.codeium/windsurf/mcp_config.jsonWin: %USERPROFILE%\.codeium\windsurf\mcp_config.json

{
  "mcpServers": {
    "supacrawlx": {
      "command": "npx",
      "args": ["-y", "@supacrawlx/mcp-server"],
      "env": {
        "SUPACRAWLX_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

VS Code

macOS: .vscode/mcp.jsonWin: .vscode/mcp.json

{
  "servers": {
    "supacrawlx": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@supacrawlx/mcp-server"],
      "env": {
        "SUPACRAWLX_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Example AI Prompts

"Transcribe this YouTube video and summarize the key points: [url]"
"Scrape this website and tell me what the company does: [url]"
"Search YouTube for the latest tutorials on React Server Components and list the top 5"
"Get the transcript of this TikTok video and translate it to Spanish: [url]"
"Crawl this documentation site and create a table of contents: [url]"
"What are the subscriber counts for these three YouTube channels: [urls]?"