Use Bitquery MCP in Cursor
Add Bitquery to Cursor so the AI can query live and historical DEX trades, OHLC, market cap, and wallet data via https://mcp.bitquery.io.
Setup via Cursor settings
- Open Cursor Settings → MCP (or Features → MCP Servers).
- Add a new MCP server.
- URL:
https://mcp.bitquery.io - Reload MCP configuration or restart Cursor.
- Approve Bitquery when prompted and sign in with your Bitquery account.
Setup via config file
Add to .cursor/mcp.json in your project (or global Cursor config):
{
"mcpServers": {
"bitquery": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.bitquery.io/mcp"]
}
}
}
Restart Cursor so the server is picked up. On first tool call, complete OAuth in the browser.
Example prompts
- "Which Base tokens crossed $10M market cap in the last 24h?"
- "Pull Pump.fun trades for mint
…in the last hour." - "Compare 24h volume on Raydium vs Orca for SOL pairs."
More detail: MCP server overview.
Frequently Asked Questions
How do I add Bitquery MCP to Cursor?
Add https://mcp.bitquery.io in Cursor MCP settings, or use mcp-remote in .cursor/mcp.json as shown on this page.
Which chains can I query through MCP?
Solana, Ethereum, BSC, Base, Arbitrum, Optimism, Polygon, and Tron — ask in plain English, no GraphQL required.
Can I use an API token instead of OAuth?
Yes for headless setups — append ?token=YOUR_TOKEN to the MCP URL. OAuth is safer for daily interactive use.