- Home
- MCP servers
- Yahoo Finance
Yahoo Finance
- other
1
GitHub Stars
other
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"marckwei-no-use-tools": {
"command": "uvx",
"args": [
"mcp-yahoo-finance"
]
}
}
}You can access Yahoo Finance data through this MCP server to fetch pricing, company details, and related information. It lets you query stock prices and company data from your MCP client in a structured, consistent way, enabling quick integration into your workflows and apps.
How to use
Connect to the Yahoo Finance MCP server from your MCP client using the stdio configuration provided. You will run the MCP server locally and interact with it as a standard MCP endpoint. Once connected, you can request current stock prices, compare prices across companies, and retrieve basic company information as part of your data pipelines or conversational tools.
How to install
Prerequisites you need installed on your machine before starting:
- Node.js (for tooling compatibility with MCP projects) or a compatible runtime in your environment
- Access to a shell or terminal with permission to run commands
- Optional: Docker if you prefer containerized execution Follow these concrete steps to set up and run the Yahoo Finance MCP server locally.
pip install mcp-yahoo-finance
# Or install via cloning and using the MCP runner
git clone git@github.com:maxscheijen/mcp-yahoo-finance.git
cd mcp-yahoo-finance
uv sync
Additional configuration and usage notes
Configure your MCP client to connect to the Yahoo Finance MCP server using the stdio method. The following runtime command uses the standard MCP runner to launch the server from your environment.
uvx
mcp-yahoo-finance
Available tools
get_stock_price
Query the latest price for a given stock ticker and return the current trading price.
get_company_info
Fetch basic company information such as name, sector, and market details for a given ticker.