mcp-yfinance vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-yfinance by 9nate-drake | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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"
]
}
}
}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