@llmquant/data-mcp — one config gives every MCP-compatible agent access to 26 financial and personal-context tools. 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.
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 Dashboard → API Keys → Create API key. 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)
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.Environment variables
string
required
Your LLMQuant Data API key. Generate at Dashboard → API Keys.
string
default:"https://api.llmquantdata.com"
Override the API base URL. Useful for self-hosted proxies or another compatible LLMQuant Data deployment.
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.