Overview
LLMQuant Data provides a Model Context Protocol (MCP) server, enabling AI agents (Claude, Cursor, etc.) to directly call our financial data APIs as tools — no custom integration required.Installation
Configuration
Claude Desktop
Add to yourclaude_desktop_config.json:
Cursor
Add to your.cursor/mcp.json:
Available Tools
Once connected, the following tools are available to your AI agent:| Tool | Description |
|---|---|
search_wiki | Search quantitative finance concepts from Quant Wiki |
search_papers | Search academic paper summaries from Quant Paper |
get_equity_prices | Get historical price data for a stock |
get_equity_snapshot | Get latest price snapshot for one or more stocks |
get_crypto_prices | Get historical price data for a crypto pair |
get_crypto_snapshot | Get latest price snapshot for crypto assets |
get_income_statements | Get income statement data for a public company |
get_balance_sheets | Get balance sheet data for a public company |
get_cash_flow_statements | Get cash flow statement data for a public company |
get_company_facts | Get reference data and key facts for a company |
get_filings | Get SEC filing metadata for a company |
get_earnings | Get earnings events and surprises for a company |
get_insider_trades | Get insider trading activity for a company |
Example Usage
Once configured, you can ask your AI agent natural language questions:“What is momentum factor investing and how does it work?”
“Show me Apple’s revenue growth over the last 5 years.”
“Get the latest BTC price and funding rate.”
“Who has been selling TSLA stock in the last 30 days?”The agent will automatically call the appropriate tools and return structured results.
Environment Variables
| Variable | Required | Description |
|---|---|---|
LLMQUANT_API_KEY | Yes | Your LLMQuant Data API key |
LLMQUANT_BASE_URL | No | Override the API base URL (default: https://api.llmquant.com) |