Crustdata logo

Crustdata MCP server

Add this endpoint to your AI client to give it live company & people data. Then ask things like “Find 5 software engineers at OpenAI”.

Endpoint https://mcp.crustdata.com/mcp

File-based clients (Antigravity, Codex) need a Crustdata API key. Grab one here.

Claude Desktop OAuth

Add Crustdata as a custom connector and sign in.

  1. Open Claude app and go to Customize → Connectors.
  2. Click + Add custom connector, name it Crustdata MCP, paste the server URL above, and click Add.
  3. Click Connect and sign in with your Crustdata account.

Claude: custom connectors

Claude CLI OAuth

Run one command, then sign in with /mcp.

  1. Run the command below in your terminal.
  2. Start Claude Code and run /mcp, then choose Authenticate.
  3. Sign in with your Crustdata account.

Run this in your terminal

claude mcp add --transport http crustdata https://mcp.crustdata.com/mcp

Claude Code: MCP

Cursor 1-click

One-click install, then sign in on first connect.

Add to Cursor

  1. Click Add to Cursor above and confirm in the dialog.
  2. Sign in with your Crustdata account when Cursor prompts you.

Or add it to your mcp.json

{
  "mcpServers": {
    "Crustdata MCP": {
      "url": "https://mcp.crustdata.com/mcp"
    }
  }
}

~/.cursor/mcp.json

Cursor: MCP install links

VS Code 1-click

One-click install (needs GitHub Copilot), then sign in.

Add to VS Code

  1. Click Add to VS Code above and confirm Install.
  2. Open Chat in Agent mode and sign in with your Crustdata account.

Or add it to .vscode/mcp.json

{
  "servers": {
    "Crustdata MCP": {
      "type": "http",
      "url": "https://mcp.crustdata.com/mcp"
    }
  }
}

.vscode/mcp.json

VS Code: use MCP servers

Google Antigravity API key

Add Crustdata from the Antigravity IDE using your API key.

▶ Watch the 2-min walkthrough

  1. In the IDE, open the menu → MCP Servers → Manage MCP servers → View raw config.
  2. Paste the block below, replacing cd_YOUR_KEY_HERE with your API key.
  3. Save and click Refresh.

Paste into your MCP config

{
  "mcpServers": {
    "crustdata": {
      "serverUrl": "https://mcp.crustdata.com/mcp",
      "headers": {
        "Authorization": "Bearer cd_YOUR_KEY_HERE"
      }
    }
  }
}

~/.gemini/config/mcp_config.json

🔑 Get your Crustdata API key

Sign in at app.crustdata.com/api-keys and copy your key, then paste it in place of cd_YOUR_KEY_HERE. (If you're logged out you'll be sent to sign in first, then back to the keys page.)

Antigravity: MCP docs

Codex CLI API key

Add a server block to ~/.codex/config.toml with your API key.

  1. Open ~/.codex/config.toml and add the block below.
  2. Replace cd_YOUR_KEY_HERE with your Crustdata API key.
  3. Run codex, then /mcp to confirm it's connected.

Add to ~/.codex/config.toml

[mcp_servers.crustdata]
url = "https://mcp.crustdata.com/mcp"
http_headers = { "Authorization" = "Bearer cd_YOUR_KEY_HERE" }

~/.codex/config.toml

🔑 Get your Crustdata API key

Sign in at app.crustdata.com/api-keys and copy your key, then paste it in place of cd_YOUR_KEY_HERE. (If you're logged out you'll be sent to sign in first, then back to the keys page.)

Codex CLI: MCP

Any other client

Any client that speaks streamable HTTP can connect.

  1. Point your client at the server URL with the streamable-http transport.
  2. URL clients sign in via OAuth; file-based clients add the API-key header below.

Generic connection config

{
  "mcpServers": {
    "crustdata": {
      "type": "streamable-http",
      "url": "https://mcp.crustdata.com/mcp",
      "headers": {
        "Authorization": "Bearer cd_YOUR_KEY_HERE"
      }
    }
  }
}

🔑 Get your Crustdata API key

Sign in at app.crustdata.com/api-keys and copy your key, then paste it in place of cd_YOUR_KEY_HERE. (If you're logged out you'll be sent to sign in first, then back to the keys page.)