FinData MCP
The FinData MCP server provides real-time financial data for AI agents across five tools, with pay-per-call micropayments ($0.01/call) via x402 on Base — no signup or API keys required, just an EVM wallet with USDC.
Stock Quotes (
stock_quote): Retrieve real-time (15-min delayed) stock price, volume, change %, and market cap for any NYSE/NASDAQ/global ticker (e.g., AAPL, TSLA).Company Fundamentals (
company_fundamentals): Access revenue, earnings, P/E ratio, market cap, sector, beta, dividend yield, and company description for any publicly traded company.Economic Indicators (
economic_indicator): Query 800,000+ US macroeconomic series from the Federal Reserve FRED database, including GDP, CPI, unemployment, interest rates, and yield curves.SEC Filings (
sec_filing): Retrieve full text of SEC filings from EDGAR — 10-K, 10-Q, 8-K, proxy statements, and S-1s — by ticker symbol or CIK number.Crypto Prices (
crypto_price): Get cryptocurrency price, market cap, 24-hour volume, and 7-day sparkline via CoinGecko using a coin ID (e.g., bitcoin, ethereum, solana).
The server integrates seamlessly with MCP clients like Claude Desktop and Cursor.
FinData MCP
Real-time financial data for AI agents. Stock quotes, company fundamentals, 800,000+ FRED economic indicators, SEC filings, and crypto prices. Pay-per-call ($0.01) via x402 micropayments on Base — no signup or API keys needed.
Financial data for AI agents. Five tools — stocks, fundamentals, economics, SEC filings, crypto — accessible from any MCP client. Pay $0.01 per call, no signup.
Quick Start
Install:
pip install findata-mcpSet your wallet key (any EVM wallet with USDC on Base):
export EVM_PRIVATE_KEY=your_private_key_hereAdd to Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"findata-mcp": {
"command": "findata-mcp",
"env": {
"EVM_PRIVATE_KEY": "your_private_key_here"
}
}
}
}Add to Cursor — edit .cursor/mcp.json in your project root:
{
"mcpServers": {
"findata-mcp": {
"command": "findata-mcp",
"env": {
"EVM_PRIVATE_KEY": "your_private_key_here"
}
}
}
}Restart your client. You now have five financial data tools available.
Related MCP server: FinImpulse MCP Server
Tools
Tool | What it returns | Cache |
| Price, volume, change %, market cap | 1 min |
| Revenue, P/E, sector, beta, dividend yield, description | 1 hr |
| 800,000+ FRED series (GDP, CPI, rates, yield curves) | 6 hr |
| Full text of 10-K, 10-Q, 8-K from SEC EDGAR | 24 hr |
| Price, market cap, 24h volume, 7-day sparkline | 1 min |
Examples
Get a stock quote
stock_quote(ticker="NVDA"){
"ticker": "NVDA",
"price": 878.35,
"change": 12.40,
"change_pct": 1.43,
"volume": 41200000,
"market_cap": 2150000000000,
"currency": "USD"
}Look up company fundamentals
company_fundamentals(ticker="AAPL"){
"ticker": "AAPL",
"name": "Apple Inc.",
"sector": "Technology",
"market_cap": 3280000000000,
"pe_ratio": 33.2,
"revenue": 383285000000,
"beta": 1.24,
"dividend_yield": 0.0044
}Check an economic indicator
economic_indicator(series_id="FEDFUNDS"){
"series_id": "FEDFUNDS",
"title": "Federal Funds Effective Rate",
"units": "Percent",
"frequency": "Monthly",
"latest_value": 4.33,
"latest_date": "2026-02-01"
}Common FRED series: GDP, CPIAUCSL (inflation), UNRATE (unemployment), DGS10 (10-year Treasury), FEDFUNDS.
Read an SEC filing
sec_filing(ticker="AAPL", form_type="10-K"){
"ticker_or_cik": "AAPL",
"form_type": "10-K",
"filing_date": "2025-11-01",
"document_url": "https://www.sec.gov/Archives/...",
"content": "UNITED STATES SECURITIES AND EXCHANGE COMMISSION..."
}Also accepts ticker_or_cik (legacy) or symbol as aliases for ticker.
Pricing
$0.01 per call. No signup, no API keys, no monthly fees.
Payment happens automatically via x402 — an open micropayment protocol. Your MCP client signs a USDC transfer on Base mainnet for each call. You need:
An EVM wallet private key (set as
EVM_PRIVATE_KEY)A small USDC balance on Base mainnet (~$1 covers 100 calls)
That's it. No accounts, no rate limits, no billing pages.
How It Works
The pip install package is a thin MCP stdio server. It proxies your tool calls to a hosted backend, automatically handling x402 payment signing. Data comes from Yahoo Finance, FRED, SEC EDGAR, and CoinGecko.
Your AI agent → findata-mcp (local stdio) → Backend (Railway) → Data providers
signs x402 payment verifies paymentConfiguration
Variable | Required | Default | Description |
| Yes | — | Wallet private key with USDC on Base |
| No | Production URL | Override for self-hosted backend |
Alternative Install Methods
uvx (no install needed):
uvx findata-mcpDistribution Status
PyPI: findata-mcp
Glama: live
mcp.so: live
Official MCP Registry: pending review
PyPI: live
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides financial data from Yahoo Finance via MCP, enabling AI agents to access real-time stock info, historical prices, financial statements, and market analysis.Last updated1012
- Alicense-qualityBmaintenanceProvides structured financial market data (stocks, ETFs, mutual funds, fundamentals, market indicators) to AI systems via MCP, enabling natural language access to financial datasets with both hosted and local deployment options.Last updated17ISC
- Alicense-qualityDmaintenanceProvides 10 financial data tools (market data, economic indicators, news, insider trades, and calendars) via a single MCP layer, enabling any MCP-compatible LLM to access diverse financial data through a unified interface.Last updatedMIT
- Flicense-qualityBmaintenanceA financial data MCP server that provides documentation and code examples for agents to write correct API calls to the findata library, covering equity prices, macro data, and more.Last updated1
Related MCP Connectors
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Twelve Data MCP: real-time & historical market data (stocks, crypto, forex, etc).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sapph1re/findata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server