MCP Server
Connect AI agents to Spider through the Model Context Protocol. Crawl, scrape, search, and extract web data from Claude, Cursor, Windsurf, and any MCP-compatible client.
Install
The MCP server runs via npx with no installation required. Set your API key as SPIDER_API_KEY in your environment.
Add Spider MCP server to Claude Code
claude mcp add spider -- npx -y spider-cloud-mcpAvailable Tools
The MCP server exposes 13 tools across two categories.
Core Tools
spider_crawl: Crawl a website and extract content from multiple pagesspider_scrape: Scrape a single page and extract its contentspider_search: Search the web and optionally crawl resultsspider_links: Extract all links from a pagespider_screenshot: Capture page screenshotsspider_unblocker: Access blocked content with anti-bot bypassspider_transform: Transform HTML to markdown or textspider_get_credits: Check your API credit balance
AI Tools (Subscription Required)
spider_ai_crawl: AI-guided crawling using natural language promptsspider_ai_scrape: AI-powered structured data extractionspider_ai_search: AI-enhanced semantic web searchspider_ai_browser: AI-powered browser automationspider_ai_links: AI-powered intelligent link extraction
Usage Example
Once configured, ask your AI agent to use Spider tools directly in conversation.
Example conversation with an MCP-connected AI agent
User: "Scrape spider.cloud and give me the pricing details"
Agent uses spider_scrape with:
url: "https://spider.cloud"
return_format: "markdown"
User: "Crawl the docs and find all API endpoints"
Agent uses spider_crawl with:
url: "https://spider.cloud/docs"
limit: 50
return_format: "markdown"Parameters
Each tool accepts the same parameters as the corresponding Spider API endpoint. Common parameters include url, return_format, limit, depth, proxy_enabled, and request. See the API reference for the full list.
npm Package
The server is published as spider-cloud-mcp on npm. Source code is available on GitHub.