This server allows you to retrieve financial data, specifically current stock prices.
Capabilities:
Get the current stock price for a specified stock ticker symbol (e.g., 'AAPL', 'TSLA')
Uses the
get_stock_pricefunction which leveragesyfinanceto fetch the data
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., "@FinDataMCPget the current stock price for AAPL"
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.
FinDataMCP
To run:
Clone repo
Install uv (package manager):
curl -LsSf https://astral.sh/uv/install.sh | shNavigate to folder:
cd FinDataMCPInstall dependencies:
# Create virtual env and activate it uv venv source .venv/bin/activate # Install dependencies uv add "mcp[cli]" httpx yfinanceCheck that everything's working by running server:
uv run findata.py
Related MCP server: mysqldb-mcp-server
Connecting to Claude Desktop
Install Claude Desktop if you haven't already
Edit Claude Desktop configuration file (Claude>settings>developer>edit config):
Add the following configuration:
{ "mcpServers": { "findata": { "command": "uv", "args": [ "--directory", "/ABSOLUTE/PATH/TO/PARENT/FOLDER/FinDataMCP", "run", "findata.py" ] } } }Restart Claude Desktop
For windows cmds: see https://modelcontextprotocol.io/quickstart/server