Your LLM just asked for a Bloomberg terminal
An MCP adapter that lets Claude and other assistants pull live stock prices, financial statements, and crypto data instead of guessing.

What it does This Python project bridges the Financial Datasets API to the Model Context Protocol. It exposes ten tools—covering income statements, balance sheets, cash flow, stock prices, company news, and crypto tickers—that LLM assistants can invoke directly. In practice, Claude Desktop users can ask for Apple’s latest P&L or Bitcoin’s price history and get live data back rather than static training-cutoff answers.
The interesting bit
The value is entirely in the protocol translation: REST endpoints become discoverable functions like get_income_statements and get_current_crypto_price that an LLM can call autonomously. It is essentially a documented API wrapper, but because it speaks MCP, the assistant handles authentication and parameter passing without the user manually copying JSON into chat.
Key highlights
- Ten tools spanning equities and crypto, including fundamentals and news
- Built for Claude Desktop integration via standard MCP server configuration
- Requires a Financial Datasets API key; data quality depends on the upstream service
- Uses
uvfor dependency management and runs as a local Python process - 2,224 stars suggest strong demand for financial data in LLM workflows
Caveats
- The README is almost entirely installation steps, with no discussion of rate limits, caching, or error handling behavior
- It is fundamentally glue code: if the Financial Datasets API changes or goes away, this server has no offline fallback
- Two crypto tools—
get_crypto_pricesandget_historical_crypto_prices—carry identical descriptions, suggesting the surface may still be rough
Verdict Worth a look if you want Claude to analyze live financials without building your own API client. Skip it if you already have a Bloomberg terminal or just need a one-off stock quote.
Frequently asked
- What is financial-datasets/mcp-server?
- An MCP adapter that lets Claude and other assistants pull live stock prices, financial statements, and crypto data instead of guessing.
- Is mcp-server open source?
- Yes — financial-datasets/mcp-server is open source, released under the MIT license.
- What language is mcp-server written in?
- financial-datasets/mcp-server is primarily written in Python.
- How popular is mcp-server?
- financial-datasets/mcp-server has 2.2k stars on GitHub.
- Where can I find mcp-server?
- financial-datasets/mcp-server is on GitHub at https://github.com/financial-datasets/mcp-server.