everything vs yfinance-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | yfinance-mcp by narumiruna | |
|---|---|---|
| Stars | ★ 85,748 | ★ 135 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
yfinance-mcp · Summary
Yahoo Finance MCP server providing stock data, financial statements, news, charts, and options data.
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
yfinance-mcp · Use cases
- Financial research assistants retrieving real-time stock data and financial statements
- Investment analysis tools accessing historical price data and technical charts
- AI-powered financial advisors monitoring market news and sector rankings
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-everythingyfinance-mcp · Install
Installation
Via uv (recommended)
- [Install uv](https://docs.astral.sh/uv/getting-started/installation/)
- Add the following to your MCP client configuration:
{
"mcpServers": {
"yfmcp": {
"command": "uvx",
"args": ["yfmcp@latest"]
}
}
}Via Docker
{
"mcpServers": {
"yfmcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "narumi/yfinance-mcp"]
}
}
}From Source
- Clone the repository and install dependencies:
git clone https://github.com/narumiruna/yfinance-mcp.git
cd yfinance-mcp
uv sync- Add the following to your MCP client configuration:
{
"mcpServers": {
"yfmcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/yfinance-mcp",
"yfmcp"
]
}
}
}Replace /path/to/yfinance-mcp with the actual path to your cloned repository.