Skip to main content
@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.
Live   npm · @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.
Configure once — every environment below picks it up.

Where it runs

Chatbots

ChatGPT · Claude · Cursor

Agent CLIs

Claude Code · Codex · Gemini CLI · OpenClaw

SDKs

LangGraph · Google ADK · Vercel AI SDK
If your runtime speaks MCP, LLMQuant Data is one config away.

Remote connectors

Claude web, Claude iOS, and other cloud-hosted agents cannot run a local npx stdio server. Use the hosted Streamable HTTP endpoint instead:

Generate a Remote MCP URL

Sign in to the DashboardConnectRemote MCP URL. Copy the URL once when it is created.
https://mcp.llmquantdata.com/u/lqd_mcp_.../mcp

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.

Verify credit and revoke behavior

Run a paid search or read tool, confirm the Dashboard balance changes, then revoke a test URL and confirm it fails immediately.
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 DashboardAPI KeysGenerate. 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:
Install the LLMQuant data-mcp server in this environment by following https://github.com/LLMQuant/data-mcp
Pick your runtime below. Each block is the canonical config — drop it in, save, restart the client.
claude mcp add llmquant-data \
  -e LLMQUANT_API_KEY=$LLMQUANT_API_KEY \
  -- npx -y @llmquant/data-mcp

Ask the agent something it should now know

Restart the client. Then drop one of these into any chat / agent session — the agent will discover the new tools, pick the right one, and return structured results.

Wiki two-step lookup

Live crypto check

Research discovery

Available tools

Each tool is one MCP capability the agent can invoke. Pricing is per-call, billed in credits.
ToolWhat it doesCredits
wiki_searchSemantic search over 50,000+ Quant Wiki entries1
wiki_readLoad the full markdown body of a wiki item by ID0
paper_searchSemantic search over 1,200+ research paper summaries1
paper_readRead specific sections of a paper (intro, methods, conclusion…)0
crypto_historical_klinesCrypto OHLCV candles with configurable interval1
crypto_snapshotLatest spot price + 24h stats for a crypto pair1
equity_historical_pricesUS equity daily OHLCV + dividend / split adjustments. Also serves ETF price history.1
etf_lookupETF basic info + top holdings summary + sector / country / asset-type exposure0
etf_holdingsFull ETF holdings (latest available SEC regulatory disclosure snapshot, sorted by weight). Tickers outside coverage still return 200, no credit charge.1
macro_indicator_searchBrowse 50+ curated macro indicators0
macro_indicator_historyHistorical observations for a macro series1
macro_indicator_snapshotLatest value for a macro indicator1
sec_filing_browseBrowse SEC 10-K / 10-Q / 8-K filing metadata0
sec_filing_readRead specific sections of a SEC filing1
sec_13f_list_manager_holdingsA manager’s 13F holdings (Top 1,000 × at least the last 4 quarters)1
sec_13f_list_ticker_holdersInstitutional holders of a ticker (Top 1,000 × at least the last 4 quarters)1
sec_13f_list_top_managersTop N smart-money managers ranked by 13F reportable value1
More data products (news, fundamentals, earnings transcripts) are on the roadmap.

Environment variables

LLMQUANT_API_KEY
string
required
Your LLMQuant Data API key. Generate at Dashboard → API Keys.
LLMQUANT_BASE_URL
string
default:"https://api.llmquantdata.com"
Override the API base URL. Useful for self-hosted proxies or testing against staging.
LLMQUANT_API_TIMEOUT_MS
number
default:15000
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.