MCP Catalogs
Home

lunchmoney-mcp vs everything

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

lunchmoney-mcp
by akutishevsky
everything
by modelcontextprotocol
Stars★ 70★ 85,748
30d uses
Score4877
Official
Categories
FinanceProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

lunchmoney-mcp · Summary

TypeScript MCP server for LunchMoney personal finance API with comprehensive transaction, budget, and account management.

everything · Summary

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

lunchmoney-mcp · Use cases

  • Automated expense tracking and categorization in AI conversations
  • Budget monitoring and financial analysis through AI assistants
  • Bulk transaction management and reporting automation

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

lunchmoney-mcp · Install

Installation Options

MCP Bundle (Recommended)
  1. Download the latest .mcpb file from the [releases page](https://github.com/akutishevsky/lunchmoney-mcp/releases)
  2. Open Claude Desktop and go to Extensions
  3. Click "Install Extension" and select the downloaded .mcpb file
  4. Enter your LunchMoney API token when prompted
Manual Configuration
{
  "mcpServers": {
    "lunchmoney": {
      "command": "npx",
      "args": ["@akutishevsky/lunchmoney-mcp"],
      "env": {
        "LUNCHMONEY_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.