MCP Catalogs
Home

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
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis 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-everything

yfinance-mcp · Install

Installation

Via uv (recommended)
  1. [Install uv](https://docs.astral.sh/uv/getting-started/installation/)
  2. 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
  1. Clone the repository and install dependencies:
git clone https://github.com/narumiruna/yfinance-mcp.git
cd yfinance-mcp
uv sync
  1. 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.

Comparison generated from public README + GitHub signals. Last updated automatically.