MCP Catalogs
Home

everything vs maverick-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
maverick-mcp
by wshobson
Stars★ 85,748★ 549
30d uses
Score7753
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.

maverick-mcp · Summary

A comprehensive MCP server for financial analysis, technical indicators, and portfolio optimization.

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

maverick-mcp · Use cases

  • Individual traders performing technical analysis on stocks
  • Investors optimizing their portfolio allocations
  • Financial analysts screening stocks based on multiple strategies

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

maverick-mcp · Install

Installation

**Prerequisites:**

  • Python 3.12+
  • uv (recommended) or pip
  • TA-Lib for technical analysis
  • Optional: Redis for caching, PostgreSQL/SQLite for persistence

**Quick Start:**

# Clone and install with uv
uv sync
cp .env.example .env
# Add Tiingo API key to .env

# Start server
make dev

**Claude Desktop Configuration:**

{
  "mcpServers": {
    "maverick-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "http://localhost:8003/sse/"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.