FinMCP
Provides real-time stock quotes, historical prices, financial statements, company info, and market news for Advanced Micro Devices (AMD), enabling AI agents to analyze AMD's financial performance.
Provides real-time stock quotes, historical prices, financial statements, company info, and market news for Apple Inc., enabling AI agents to analyze Apple's financial performance.
Provides real-time stock quotes, historical prices, financial statements, company info, and market news for NVIDIA Corporation, enabling AI agents to analyze NVIDIA's financial performance.
Provides real-time stock quotes, historical prices, financial statements, company info, and market news for Tesla Inc., enabling AI agents to analyze Tesla's financial performance.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FinMCPShow me my portfolio performance today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FinMCP ๐ โ Financial Data MCP Server
Let any AI agent query stocks, financials, markets & portfolios in real time.
๐ What is FinMCP?
FinMCP is an open-source Model Context Protocol (MCP) server that gives any AI agent โ Claude, Codex, Cursor, Hermes, or custom agents โ real-time superpowers over financial data.
Ask your AI agent questions like:
"What's Apple's current stock price and P/E ratio?" "Show me my portfolio performance today" "Compare Nvidia vs AMD on revenue growth" "What's the NIFTY 50 doing right now?" "Get the latest earnings transcript sentiment for Tesla"
And it queries live financial data โ no API keys required. ๐ฏ
Related MCP server: Stock Market Real-Time Analyzer
โจ Features
Feature | Description |
๐ท๏ธ Stock Quotes | Real-time price, change %, volume, market cap, day range |
๐ Historical Prices | OHLCV data โ 1d to max, any interval |
๐ข Company Fundamentals | Profile, sector, financials, ratios, employees |
๐ Financial Statements | Income statement, balance sheet, cash flow (annual/quarterly) |
๐ Market Indices | S&P 500, NASDAQ, NIFTY 50, SENSEX, FTSE, DAX, Nikkei & more |
๐ฑ Currency Exchange | Live FX rates for 150+ currencies |
๐ฐ Market News | Latest financial news for any ticker |
๐ Portfolio Tracker | Track holdings, P&L, allocation, performance |
โ๏ธ Stock Comparison | Side-by-side comparison of key metrics |
๐ Ticker Search | Find tickers by company name or keyword |
๐ Global markets supported โ US, India (
.NS), Europe, Japan, and more.
๐ Quick Start
Prerequisites
Python 3.10+
An MCP-compatible client: Claude Desktop, Claude Code, Codex CLI, Hermes Agent, or Cursor
1๏ธโฃ Install
pip install finmcp
# or with uv (faster)
uv pip install finmcp
# or from source
git clone https://github.com/USERNAME/FinMCP.git
cd FinMCP
uv sync2๏ธโฃ Run the server
# Run in stdio mode (default โ for MCP clients)
finmcp
# Or run as SSE server (for remote connections)
finmcp --transport sse --port 98763๏ธโฃ Connect your AI agent
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"finmcp": {
"command": "finmcp",
"args": []
}
}
}Claude Code
claude mcp add finmcp -- cmd finmcpHermes Agent
Run alongside your agent:
finmcpThen in your Hermes config, add it as an MCP server.
๐ ๏ธ Tools Reference
Stock Data
Tool | Args | Returns |
|
| Price, change, volume, market cap, P/E, dividend yield |
|
| OHLCV time series with summary stats |
|
| Full company profile, sector, financial ratios |
|
| Income statement / balance sheet / cash flow |
|
| Matching tickers with names, exchange, sector |
Market Data
Tool | Args | Returns |
| (none) | Values for 13 major global indices |
|
| FX rates for 15+ major currencies |
|
| Latest news articles with links |
Portfolio & Analysis
Tool | Args | Returns |
|
| Portfolio value, P&L, allocation breakdown |
|
| Side-by-side comparison of 2-10 stocks |
๐ก Example Queries
Ask your AI agent (once FinMCP is connected):
User: "What's the current state of the Indian market?"
Agent: *uses get_market_indices โ sees NIFTY 50 and SENSEX*
Agent: *uses get_stock_quote for RELIANCE.NS, TCS.NS, HDFCBANK.NS*
User: "How did my portfolio do today?"
Agent: *uses track_portfolio with your holdings*
User: "Find me good AI stocks to invest in"
Agent: *uses search_tickers to find AI companies*
Agent: *uses compare_stocks to compare them*
User: "Show me Microsoft's revenue trend"
Agent: *uses get_financials for MSFT income statement*๐ Python API
Use FinMCP programmatically in your own agents:
from finmcp.server import server
# Run the MCP server
server.run(transport="stdio")Or import individual tool functions:
from finmcp.server import get_stock_quote
import json
result = json.loads(get_stock_quote("AAPL"))
print(f"Apple: ${result['price']} ({result['change_percent']:+.2f}%)")๐งช Development
# Clone and set up
git clone https://github.com/USERNAME/FinMCP.git
cd FinMCP
uv sync
# Run tests
uv run pytest tests/ -v
# Lint
uv run ruff check src/
# Type check
uv run mypy src/๐ Roadmap
Earnings transcripts โ AI-powered sentiment analysis of earnings calls
Technical indicators โ SMA, RSI, MACD, Bollinger Bands
Options data โ Option chains, Greeks, implied volatility
Crypto prices โ Bitcoin, Ethereum, and major cryptocurrencies
SEC filings โ Fetch 10-K, 10-Q, 8-K filings for any company
Chart generation โ Generate price charts as SVG/PNG
Alert system โ Price alerts and threshold notifications
Web UI โ Dashboard with charts and portfolio overview
๐ค Contributing
PRs are welcome! Check the roadmap for ideas, or suggest your own.
Fork the repo
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a PR
๐ License
MIT โ use it freely in personal and commercial projects.
โญ๏ธ Show Your Support
If FinMCP helps you, please give it a โญ๏ธ on GitHub โ it helps others discover it too!
Built with โค๏ธ by Jayesh
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/gigabytejayesh/FinMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server