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 | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this 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)
- Download the latest
.mcpbfile from the [releases page](https://github.com/akutishevsky/lunchmoney-mcp/releases) - Open Claude Desktop and go to Extensions
- Click "Install Extension" and select the downloaded
.mcpbfile - 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