Install
$ agentstack add mcp-financial-datasets-mcp-server Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Pipes remote content directly into a shell (remote code execution).
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Financial Datasets MCP Server
Introduction
This is a Model Context Protocol (MCP) server that provides access to stock market data from Financial Datasets.
It allows Claude and other AI assistants to retrieve income statements, balance sheets, cash flow statements, stock prices, and market news directly through the MCP interface.
Available Tools
This MCP server provides the following tools:
- getincomestatements: Get income statements for a company.
- getbalancesheets: Get balance sheets for a company.
- getcashflow_statements: Get cash flow statements for a company.
- getcurrentstock_price: Get the current / latest price of a company.
- gethistoricalstock_prices: Gets historical stock prices for a company.
- getcompanynews: Get news for a company.
- getavailablecrypto_tickers: Gets all available crypto tickers.
- getcryptoprices: Gets historical prices for a crypto currency.
- gethistoricalcrypto_prices: Gets historical prices for a crypto currency.
- getcurrentcrypto_price: Get the current / latest price of a crypto currency.
Setup
Prerequisites
- Python 3.10 or higher
- uv package manager
Installation
- Clone this repository:
``bash git clone https://github.com/financial-datasets/mcp-server cd mcp-server ``
- If you don't have uv installed, install it:
```bash # macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows curl -LsSf https://astral.sh/uv/install.ps1 | powershell ```
- Install dependencies:
```bash # Create virtual env and activate it uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies uv add "mcp[cli]" httpx # On Windows: uv add mcp[cli] httpx
```
- Set up environment variables:
```bash # Create .env file for your API keys cp .env.example .env
# Set API key in .env FINANCIALDATASETSAPI_KEY=your-financial-datasets-api-key ```
- Run the server:
``bash uv run server.py ``
Connecting to Claude Desktop
- Install Claude Desktop if you haven't already
- Create or edit the Claude Desktop configuration file:
``bash # macOS mkdir -p ~/Library/Application\ Support/Claude/ nano ~/Library/Application\ Support/Claude/claude_desktop_config.json ``
- Add the following configuration:
``json { "mcpServers": { "financial-datasets": { "command": "/path/to/uv", "args": [ "--directory", "/absolute/path/to/financial-datasets-mcp", "run", "server.py" ] } } } ``
Replace /path/to/uv with the result of which uv and /absolute/path/to/financial-datasets-mcp with the absolute path to this project.
- Restart Claude Desktop
- You should now see the financial tools available in Claude Desktop's tools menu (hammer icon)
- Try asking Claude questions like:
- "What are Apple's recent income statements?"
- "Show me the current price of Tesla stock"
- "Get historical prices for MSFT from 2024-01-01 to 2024-12-31"
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: financial-datasets
- Source: financial-datasets/mcp-server
- License: MIT
- Homepage: https://www.financialdatasets.ai/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.