Spidra

Connect your AI assistant
to Spidra.

A hosted Model Context Protocol endpoint for AI-powered web scraping, batch extraction, and site crawling. Use it straight from your editor or coding agent.

Endpoint
https://mcp.spidra.io/mcp
Streamable HTTP OAuth & API Key 12 tools

Claude Code

Run this in your terminal to add Spidra. Then open Claude Code and run /mcp to sign in and confirm the connection.

claude mcp add --transport http spidra https://mcp.spidra.io/mcp

If you want to use an API key instead, add the Authorization header when you register Spidra:

claude mcp add --transport http spidra https://mcp.spidra.io/mcp \
  --header "Authorization: Bearer spd_YOUR_API_KEY"

Claude Desktop

Open Customize → Connectors, click +, then select Add custom connector. Paste the URL below and click Add. Claude will prompt you to connect when authentication is required.

https://mcp.spidra.io/mcp

Cursor

Click Add to Cursor to install Spidra, or add this to .cursor/mcp.json in your project. Cursor will prompt you to sign in when Spidra requires authentication.

Add to Cursor
{
  "mcpServers": {
    "spidra": {
      "url": "https://mcp.spidra.io/mcp"
    }
  }
}

VS Code

Click Add to VS Code, or add this to .vscode/mcp.json in your project. VS Code supports OAuth for remote MCP servers and will handle the sign-in flow when authentication is required.

Add to VS Code
{
  "servers": {
    "spidra": {
      "type": "http",
      "url": "https://mcp.spidra.io/mcp"
    }
  }
}

If you want to use an API key instead, add an Authorization header:

{
  "servers": {
    "spidra": {
      "type": "http",
      "url": "https://mcp.spidra.io/mcp",
      "headers": {
        "Authorization": "Bearer spd_YOUR_API_KEY"
      }
    }
  }
}

Windsurf

Add this to ~/.codeium/windsurf/mcp_config.json. Windsurf supports OAuth for remote MCP servers and will handle the sign-in flow when authentication is required.

{
  "mcpServers": {
    "spidra": {
      "serverUrl": "https://mcp.spidra.io/mcp"
    }
  }
}

Antigravity

Add this to ~/.gemini/config/mcp_config.json, or .agents/mcp_config.json for the current workspace. Antigravity handles OAuth automatically for compatible remote MCP servers.

{
  "mcpServers": {
    "spidra": {
      "serverUrl": "https://mcp.spidra.io/mcp"
    }
  }
}

If you want to use an API key instead, add an Authorization header:

{
  "mcpServers": {
    "spidra": {
      "serverUrl": "https://mcp.spidra.io/mcp",
      "headers": {
        "Authorization": "Bearer spd_YOUR_API_KEY"
      }
    }
  }
}

Codex

Run these commands in your terminal to add Spidra and sign in:

codex mcp add spidra --url https://mcp.spidra.io/mcp
codex mcp login spidra

If you want to use an API key instead, export it as an environment variable and use it as the bearer token:

export SPIDRA_API_KEY=spd_YOUR_API_KEY
codex mcp add spidra --url https://mcp.spidra.io/mcp \
  --bearer-token-env-var SPIDRA_API_KEY

GitHub Copilot

Run this in your terminal to add Spidra to GitHub Copilot CLI:

copilot mcp add --transport http spidra https://mcp.spidra.io/mcp

If Spidra shows a needs-auth status, run /mcp auth spidra in GitHub Copilot CLI to sign in.

If you want to use an API key instead, add the Authorization header when you register Spidra:

copilot mcp add --transport http \
  --header "Authorization: Bearer spd_YOUR_API_KEY" \
  spidra https://mcp.spidra.io/mcp

opencode

Add this to your opencode.json. opencode automatically handles OAuth for remote MCP servers.

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "spidra": {
      "type": "remote",
      "url": "https://mcp.spidra.io/mcp",
      "enabled": true
    }
  }
}

Prefer a static API key instead? See the opencode setup guide for the exact config.

Any MCP client

Using another MCP client? Add Spidra as a remote Streamable HTTP server using this endpoint:

https://mcp.spidra.io/mcp

If your client supports custom HTTP headers and you want to use an API key, send:

Authorization: Bearer spd_YOUR_API_KEY

Check your client's documentation for the exact configuration format.