What is the Lunch Money MCP server?
MCP server for managing LunchMoney personal finances: transactions, budgets, categories, and more.
How to install Lunch Money
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
LUNCHMONEY_API_TOKENrequiredsecretYour LunchMoney API token. Obtain it from https://my.lunchmoney.app/settings/developer
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"lunchmoney-mcp": {
"command": "npx",
"args": [
"-y",
"@akutishevsky/lunchmoney-mcp"
],
"env": {
"LUNCHMONEY_API_TOKEN": "<YOUR_LUNCHMONEY_API_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"lunchmoney-mcp": {
"command": "npx",
"args": [
"-y",
"@akutishevsky/lunchmoney-mcp"
],
"env": {
"LUNCHMONEY_API_TOKEN": "<YOUR_LUNCHMONEY_API_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"lunchmoney-mcp": {
"command": "npx",
"args": [
"-y",
"@akutishevsky/lunchmoney-mcp"
],
"env": {
"LUNCHMONEY_API_TOKEN": "<YOUR_LUNCHMONEY_API_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"lunchmoney-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@akutishevsky/lunchmoney-mcp"
],
"env": {
"LUNCHMONEY_API_TOKEN": "<YOUR_LUNCHMONEY_API_TOKEN>"
}
}
}
}Claude Code
claude mcp add lunchmoney-mcp --env LUNCHMONEY_API_TOKEN=<YOUR_LUNCHMONEY_API_TOKEN> -- npx -y @akutishevsky/lunchmoney-mcpRelated MCP servers
Withings Health Data
Maintained
MCP server for Withings health data — sleep, activity, heart, and body metrics.
28
View repository →TypeScript
MIT
Nutrition MCP
Active
Personal nutrition tracking — log meals, track macros, and review history through conversation.
18
View repository →TypeScript
MIT
Monobank
Maintained
MCP server for Monobank API — currency rates, client info, and account statements
6
View repository →TypeScript
MIT
Full Spotify Web API coverage - albums, artists, playlists, player controls, and more.
View repository →