mcp-yfinance vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
mcp-yfinance by 9nate-drake | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 19 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 34 | 84 |
| Official | — | — |
| Categories | FinanceAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 18 mo ago | this month |
mcp-yfinance · Summary
MCP server providing Yahoo Finance data through yfinance API to Claude Desktop.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-yfinance · Use cases
- Get current stock prices and market data for various companies
- Analyze historical stock performance over custom time periods
- Retrieve institutional ownership and analyst price target information
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
mcp-yfinance · Install
Installation
Requirements
- Python 3.10 or higher
- Claude Desktop
Install Steps
- Clone this repo:
git clone https://github.com/9nate-drake/mcp-yfinance- Install required packages:
pip install mcp yfinanceConfiguration
Add to your Claude Desktop config file claude_desktop_config.json:
{
"mcpServers": {
"yfinance": {
"command": "python",
"args": [
"/path/to/finance_server/server.py"
]
}
}
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}