Add this endpoint to your AI client to give it live company & people data. Then ask things like “Find 5 software engineers at OpenAI”.
File-based clients (Antigravity, Codex) need a Crustdata API key. Grab one here.
Add Crustdata as a custom connector and sign in.
Run one command, then sign in with /mcp.
/mcp, then choose Authenticate.Run this in your terminal
claude mcp add --transport http crustdata https://mcp.crustdata.com/mcpOne-click install, then sign in on first connect.
Or add it to your mcp.json
{
"mcpServers": {
"Crustdata MCP": {
"url": "https://mcp.crustdata.com/mcp"
}
}
}~/.cursor/mcp.json
One-click install (needs GitHub Copilot), then sign in.
Or add it to .vscode/mcp.json
{
"servers": {
"Crustdata MCP": {
"type": "http",
"url": "https://mcp.crustdata.com/mcp"
}
}
}.vscode/mcp.json
Add Crustdata from the Antigravity IDE using your API key.
cd_YOUR_KEY_HERE with your API key.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.)
Add a server block to ~/.codex/config.toml with your API key.
~/.codex/config.toml and add the block below.cd_YOUR_KEY_HERE with your Crustdata API key.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.)
Any client that speaks streamable HTTP can connect.
streamable-http transport.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.)