Lunchmoney MCP Server
Mirror of
MCP-Mirror
README
Lunchmoney MCP Server
A Model Context Protocol (MCP) server that lets you interact with your Lunchmoney transactions and budgets through Claude and other AI assistants.
Features
This server provides four main tools:
- get-recent-transactions: View your recent transactions from the past N days
- search-transactions: Search transactions by keyword in payee names or notes
- get-category-spending: Analyze spending in specific categories
- get-budget-summary: Get detailed budget information including spending, remaining amounts, and recurring items
Installation
Installing via Smithery
To install Lunchmoney MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @leafeye/lunchmoney-mcp-server --client claude
You can use this server directly in Claude Desktop without installation:
{
"mcpServers": {
"lunchmoney": {
"command": "npx",
"args": ["-y", "lunchmoney-mcp-server"],
"env": {
"LUNCHMONEY_TOKEN": "your_token_here"
}
}
}
}
Replace your_token_here with your Lunchmoney API token, which you can get from your Lunchmoney developer settings.
Example Usage
Once configured in Claude Desktop, you can ask questions like:
Transactions
- "Show me my recent transactions from the past week"
- "Search for all transactions at Amazon"
- "How much did I spend on restaurants last month?"
- "Find transactions tagged as business expenses"
Budgets
- "Show me my budget summary for this month"
- "What's my budget status from January to March 2024?"
- "How much of my food budget is remaining?"
- "Show me categories where I'm over budget"
What is MCP?
The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to Large Language Models (LLMs). Think of MCP like a USB-C port for AI applications - it provides a standardized way to connect AI models to different data sources and tools.
Some key benefits of MCP:
- Standardized way to expose data and functionality to LLMs
- Human-in-the-loop security (all actions require user approval)
- Growing ecosystem of pre-built integrations
- Works with multiple AI models and applications
Development
To develop locally:
- Clone this repository
- Install dependencies:
npm install
- Build the TypeScript code:
npm run build
- Run with your API token:
LUNCHMONEY_TOKEN=your_token_here node build/index.js
- Test with MCP Inspector:
LUNCHMONEY_TOKEN=your_token_here npx @modelcontextprotocol/inspector node build/index.js
API Notes
- Budget data must use month boundaries for dates (e.g., 2024-01-01 to 2024-01-31)
- Transactions can use any date range
- All monetary values are returned in their original currency
- Category names are case-insensitive when searching
License
MIT
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Recommended Servers
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.
Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
MATLAB MCP Server
Integrates MATLAB with AI to execute code, generate scripts from natural language, and access MATLAB documentation seamlessly.
Macrostrat MCP Server
Enables Claude to query comprehensive geologic data from the Macrostrat API, including geologic units, columns, minerals, and timescales through natural language.
MCP Word Counter
A Model Context Protocol server that provides tools for analyzing text documents, including counting words and characters. This server helps LLMs perform text analysis tasks by exposing simple document statistics functionality.