mcp-finance
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., "@mcp-financeGet the latest news for Microsoft"
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.
Introduction
This is a MCP server that helps your MCP client/LLM get access to financial data like stock price, company info, and company news.
It is powered by the yfinance Python library and MarketAux API.
Tools available:
Get Stock Price: Fetch the latest stock price for a symbol.
Get Company Info: Fetch basic company info(Name, Sector, Industry, Website, Business Summary)
Get Historical Data: Fetch historical data for a stock
Get Stock News: Fetch latest news related to a stock symbol
Get Market Indices: Fetch the latest data for major US market indices.
Setup your environment
1. Installing uv
For MacOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | shFor Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Make sure to restart your terminal afterwards to ensure that the uv command gets picked up.
Related MCP server: Yahoo Finance MCP Server
2. Setting up the server
Now, let’s create and set up our project:
Cloning the repo
git clone git@github.com:nimitmk7/mcp-finance.git
Set up environment variables:
# Create .env file for your API keys
cp .env.example .env
# Set API key in .env
MARKETAUX_API_KEY=your-marketaux-api-keyAdding the server to Claude Client
If you are using Claude Desktop Client, you can go to Settings -> Developer, and press on the button 'Edit Config'. It will open claude_desktop_config.json. Put the following configuration with your relevant details in the file:
For Mac Users
{
"mcpServers": {
"mcp-finance": {
"command": "/Users/<username>/.local/bin/uv",
"args": [
"--directory",
"/Users/<username>/<path-to-dir>/mcp-finance",
"run",
"mcp_finance.py"
]
}
}
}For Windows users
{
"mcpServers": {
"mcp-finance": {
"command": "C:\\Users\\<username>\\.local\\bin\\uv.exe",
"args": [
"--directory",
"C:\\Users\\<username>\\<path-to-dir>\\mcp-finance",
"run",
"mcp_finance.py"
]
}
}
}If you already have some MCP servers, just add the mcp-finance config in the list of configs of MCP servers.
Restart the Claude Desktop client after these steps.
3. Verify the setup
In the UI, click on the hammer icon and check whether our server tools are present in the list of available tools.
4. Example Usage
Try asking Claude questions like:
"What is the price of Nvidia stock right now"
"How much has the share price of Google changed over 1 month "
"Get me latest news for Microsoft"
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
- Alicense-qualityBmaintenanceProvides comprehensive financial market data and news through the Finnhub API. Enables real-time stock quotes, company profiles, financial metrics, analyst recommendations, and market news access.1MIT
- Alicense-qualityDmaintenanceProvides real-time stock quotes, historical price data, financial news, and multi-stock comparisons using Yahoo Finance data. Enables users to access comprehensive financial market information through natural language queries.301MIT
- Alicense-quality-maintenanceProvides real-time financial data from Yahoo Finance, enabling stock price lookups, historical data analysis, company information retrieval, and multi-stock comparisons through natural language queries.
- AlicenseAqualityDmaintenanceProvides comprehensive financial analysis and real-time market data including stock information, options chains, technical indicators, financial statements, earnings calendars, and market sentiment indicators through integration with yfinance and other financial APIs.14MIT
Related MCP Connectors
Real-time news with bias scoring, live market data, and AI-powered options pricing
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
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/nimitmk7/mcp-finance'
If you have feedback or need assistance with the MCP directory API, please join our Discord server