yahoo-finance-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
yahoo-finance-mcp by Alex2Yang97 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 286 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
yahoo-finance-mcp · Summary
Comprehensive Yahoo Finance MCP server providing stock data, financial statements, options, and market news.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
yahoo-finance-mcp · Use cases
- Analyze stock performance and trends with historical price data
- Compare financial statements between companies
- Monitor market news and analyst recommendations
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
yahoo-finance-mcp · Install
Recommended: run with uvx
Run the server directly from the repository:
uvx --from git+https://github.com/Alex2Yang97/yahoo-finance-mcp yahoo-finance-mcpClaude Desktop Integration
- Edit Claude Desktop config file:
**macOS:**
{
"mcpServers": {
"yfinance": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/Alex2Yang97/yahoo-finance-mcp",
"yahoo-finance-mcp"
]
}
}
}**Windows:**
{
"mcpServers": {
"yfinance": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/Alex2Yang97/yahoo-finance-mcp",
"yahoo-finance-mcp"
]
}
}
}- Restart Claude Desktop
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything