@llmquant/data-mcp — one config gives every MCP-compatible agent access to 17+ financial data tools (wiki, papers, prices, ETFs, filings, macro). Source on LLMQuant/data-mcp.Why MCP
LLMQuant Data is built agent-first. The REST API exists as a fallback; the canonical interface is the Model Context Protocol — a standard that lets any agent runtime (Claude, Cursor, Codex, Gemini CLI, OpenClaw, ChatGPT custom GPTs…) call our data tools natively, with structured arguments and typed results, no glue code.Where it runs
Chatbots
ChatGPT · Claude · Cursor
Agent CLIs
Claude Code · Codex · Gemini CLI · OpenClaw
SDKs
LangGraph · Google ADK · Vercel AI SDK
Remote connectors
Claude web, Claude iOS, and other cloud-hosted agents cannot run a localnpx stdio server. Use the hosted Streamable HTTP endpoint instead:
Generate a Remote MCP URL
Sign in to the Dashboard → Connect → Remote MCP URL. Copy the URL once when it is created.
Paste it into Claude custom connectors
Choose Claude’s No Authentication connector mode and paste the full URL. The token lives in the URL path, is stored hashed by LLMQuant Data, and can be revoked from the Dashboard without rotating your API key.
Local desktop and CLI clients can keep using the stdio setup below. Remote URLs are for cloud clients and synced Claude connectors that need a public HTTPS MCP endpoint.
Quick setup
Get an API key
Sign in to the Dashboard → API Keys → Generate. Store it as an environment variable named
LLMQUANT_API_KEY.Add data-mcp to your client
Drop this prompt into your agent — it will read the canonical setup from GitHub:
Or install manually
Or install manually
Pick your runtime below. Each block is the canonical config — drop it in, save, restart the client.
- Claude Code
- Cursor
- Codex CLI
- Gemini CLI
- Claude Desktop
- Other (stdio)
Available tools
Each tool is one MCP capability the agent can invoke. Pricing is per-call, billed in credits.| Tool | What it does | Credits |
|---|---|---|
wiki_search | Semantic search over 50,000+ Quant Wiki entries | 1 |
wiki_read | Load the full markdown body of a wiki item by ID | 0 |
paper_search | Semantic search over 1,200+ research paper summaries | 1 |
paper_read | Read specific sections of a paper (intro, methods, conclusion…) | 0 |
crypto_historical_klines | Crypto OHLCV candles with configurable interval | 1 |
crypto_snapshot | Latest spot price + 24h stats for a crypto pair | 1 |
equity_historical_prices | US equity daily OHLCV + dividend / split adjustments. Also serves ETF price history. | 1 |
etf_lookup | ETF basic info + top holdings summary + sector / country / asset-type exposure | 0 |
etf_holdings | Full ETF holdings (latest available SEC regulatory disclosure snapshot, sorted by weight). Tickers outside coverage still return 200, no credit charge. | 1 |
macro_indicator_search | Browse 50+ curated macro indicators | 0 |
macro_indicator_history | Historical observations for a macro series | 1 |
macro_indicator_snapshot | Latest value for a macro indicator | 1 |
sec_filing_browse | Browse SEC 10-K / 10-Q / 8-K filing metadata | 0 |
sec_filing_read | Read specific sections of a SEC filing | 1 |
sec_13f_list_manager_holdings | A manager’s 13F holdings (Top 1,000 × at least the last 4 quarters) | 1 |
sec_13f_list_ticker_holders | Institutional holders of a ticker (Top 1,000 × at least the last 4 quarters) | 1 |
sec_13f_list_top_managers | Top N smart-money managers ranked by 13F reportable value | 1 |
Environment variables
Your LLMQuant Data API key. Generate at Dashboard → API Keys.
Override the API base URL. Useful for self-hosted proxies or testing against staging.
Request timeout in milliseconds. Max
120000.What’s next
Browse the data tools
Each tool maps 1:1 to an endpoint page with
Agent flow diagram + response schema.Source on GitHub
Read the source, file an issue, and follow the roadmap.