MCP Catalogs
Home

everything vs monarch-mcp-server

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

everything
by modelcontextprotocol
monarch-mcp-server
by robcerda
Stars★ 85,748★ 216
30d uses
Score7750
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceProductivityAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

monarch-mcp-server · Summary

MCP server for Monarch Money personal finance management with extensive transaction and account tools.

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

monarch-mcp-server · Use cases

  • Automating personal financial reporting and analysis
  • Bulk categorization of transactions for expense tracking
  • Integration with Claude AI for intelligent financial assistance

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

monarch-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/robcerda/monarch-mcp-server.git
cd monarch-mcp-server
  1. Install dependencies:
pip install -r requirements.txt
pip install -e .
  1. Configure Claude Desktop:

Add to your config file:

{
  "mcpServers": {
    "Monarch Money": {
      "command": "/opt/homebrew/bin/uv",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "--with-editable",
        "/path/to/your/monarch-mcp-server",
        "mcp",
        "run",
        "/path/to/your/monarch-mcp-server/src/monarch_mcp_server/server.py"
      ]
    }
  }
}
  1. One-time authentication:
python login_setup.py
  1. Restart Claude
Comparison generated from public README + GitHub signals. Last updated automatically.