Ask your AI agent what Smart Money is doing
Add the Datadash MCP server to Claude Code, Cursor, Codex or VS Code.
Ask in plain English; your assistant writes the queries.
What is the High Win Rate Millionaire cohort holding in crypto markets right now?
list_cohorts12 cohorts
query_lookupCrypto is 21
query_tablesignalScore, 6 rows
The cohort’s 193 wallets hold 6 scored positions in crypto. Highest score first, and the top one is 10× that trader’s usual size.
Will Ethereum dip to $2,250 by December 31, 2026?No 41.1¢508,389.8 shares100-0.1¢10×$209.15K105
Will Ethereum reach $3,300 in September?No 98.7¢16,791.2 shares95-0.1¢51.7×$16.57K13
Will Ethereum reach $3,100 in September?No 96.3¢2,001.3 shares95-0.2¢6×$1.93K13Open the cohort to see all 193 wallets.
datadash.xyz/cohorts/07J038ZMM0R67
Connect it in three steps
Datadash hosts the server, so there is nothing to install and nothing to run.
Create an API key
Open Settings, then API Keys, and create one. It is shown once. Make a separate key for your assistant, so you can revoke that one on its own.
Open API KeysAdd the server to your client
One address, over Streamable HTTP, with your key in the
X-Api-Keyheader.https://api.datadash.xyz/mcpClaude Code
Terminalclaude mcp add --scope user --transport http datadash \ https://api.datadash.xyz/mcp \ --header "X-Api-Key: <your-api-key-here>"Scope user makes it available in every project. Start a new session, open the MCP menu, and datadash is listed as connected.
Cursor
~/.cursor/mcp.json{ "mcpServers": { "datadash": { "url": "https://api.datadash.xyz/mcp", "headers": { "X-Api-Key": "<your-api-key-here>" } } } }Use .cursor/mcp.json instead to limit it to one project. A green dot next to datadash in Cursor Settings means it is connected.
Codex
~/.codex/config.toml[mcp_servers.datadash] url = "https://api.datadash.xyz/mcp" http_headers = { "X-Api-Key" = "<your-api-key-here>" }Codex cannot set a custom header from the command line, so it goes in the file. To keep the key out of it, use env_http_headers and export the key in your shell.
VS Code
.vscode/mcp.json{ "inputs": [ {"type": "promptString", "id": "datadash-api-key", "description": "Datadash API key", "password": true} ], "servers": { "datadash": { "type": "http", "url": "https://api.datadash.xyz/mcp", "headers": {"X-Api-Key": "${input:datadash-api-key}"} } } }The inputs entry has VS Code ask for the key once and store it, so it never sits in the file. Select Start above the datadash entry, then use Chat in agent mode.
Other clients
Most clients{ "mcpServers": { "datadash": { "type": "http", "url": "https://api.datadash.xyz/mcp", "headers": {"X-Api-Key": "<your-api-key-here>"} } } }Any client that speaks Streamable HTTP and can send a custom header will work. The server is stateless: every request is authenticated on its own, and no session carries over between them.
Ask your first question
Start a new chat and ask about the data. Your assistant works out the table, the fields and the filters itself.
- Who are the top 10 wallets by realized PnL in crypto markets?
- What is smart money positioned on in the biggest active politics markets?
- Which markets resolving in the next 30 days have the biggest smart money edge among the top 1,000 traders?
- Build a cohort of wallets with over $100k in volume and a win rate above 60%, then tell me what they are holding.
Your questions, answered
What the MCP server reaches, and what it does not.
Do I need a Datadash account?
Yes. The server authenticates with a Datadash API key, which you create under Settings, API Keys. The limits of your Datadash plan apply to tool calls too.
What can the assistant do with my key?
Everything your account can do, including creating, changing and deleting your cohorts. Create a key just for your MCP client, so you can revoke it without affecting anything else.
Which AI tools can connect to it?
Any client that speaks Streamable HTTP and can send a custom header. Claude Code, Cursor, Codex and VS Code all can, and each has its own tab in the setup above.
Is it the same data as the app?
Yes. A tool call runs through the same filters, validation and authentication as the equivalent REST request, so anything you ask here you can reproduce with curl.
Where does the data come from?
Datadash indexes Polymarket trades directly from the Polygon blockchain, and calculates PnL, ranks, Signals and Smart Money from them. Market names and images come from Polymarket.
Is it affiliated with Polymarket?
No. Datadash is an independent company. The MCP server is not affiliated with or endorsed by Polymarket.