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 | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this 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-everythingmonarch-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/robcerda/monarch-mcp-server.git
cd monarch-mcp-server- Install dependencies:
pip install -r requirements.txt
pip install -e .- 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"
]
}
}
}- One-time authentication:
python login_setup.py- Restart Claude