Skip to content

Instantly share code, notes, and snippets.

@quantumproxies
Created August 21, 2026 12:42
Show Gist options
  • Select an option

  • Save quantumproxies/d5349fc5b5de22e23e3b61a07f8c2f92 to your computer and use it in GitHub Desktop.

Select an option

Save quantumproxies/d5349fc5b5de22e23e3b61a07f8c2f92 to your computer and use it in GitHub Desktop.
MCP config for Claude Code, Claude Desktop and Cursor — give your agent live web access https://quanticdata.io/blog/how-to-use-mcp-in-cursor/

QuanticData MCP — client configuration

Give Claude Code, Claude Desktop, Cursor or any MCP client live web access: scrape a page, run a search, map or crawl a site, audit a URL, and run 31 ready-made collectors.

Server (single file, zero dependencies): quanticdata-mcp-server · product page: quanticdata.io/mcp-server

git clone https://github.com/quantumproxies/quanticdata-mcp-server

Get a key at app.quanticdata.io.

Claude Code

claude mcp add quanticdata \
  -e QUANTICDATA_API_KEY=qd_live_your_key_here \
  -- node /absolute/path/to/quanticdata-mcp-server/server.mjs

Claude Desktop — claude_desktop_config.json

See claude_desktop_config.json in this gist.

Cursor — .cursor/mcp.json

See cursor-mcp.json in this gist. Guide: how to use MCP in Cursor.

Tools the agent gets

scrape · search · map · crawl + crawl_status · seo_audit · list_collectors · run_collector · collector_run_status

Prompts that work

  • "Map quanticdata.io, then read the five newest blog posts and summarise the themes."
  • "Search serp api pricing in the US and Germany and tell me how the top ten differ."
  • "Is our pricing page indexable without JavaScript?"
  • "Use list_collectors, then pull 40 dental clinics in Austin with local_business_leads."

Let the agent read the catalogue before it picks a collector — the schemas are published so a model can choose correctly.

Background: how MCP servers work · is an MCP server like an API?

{
"mcpServers": {
"quanticdata": {
"command": "node",
"args": ["/absolute/path/to/quanticdata-mcp-server/server.mjs"],
"env": {
"QUANTICDATA_API_KEY": "qd_live_your_key_here"
}
}
}
}
{
"mcpServers": {
"quanticdata": {
"command": "node",
"args": ["/absolute/path/to/quanticdata-mcp-server/server.mjs"],
"env": {
"QUANTICDATA_API_KEY": "qd_live_your_key_here"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment