by s-stefanov
MCP server for integrating Actual Budget with Claude and other LLM assistants.
The Actual Budget MCP Server allows you to interact with your personal financial data from Actual Budget using natural language through LLMs. It exposes your accounts, transactions, and financial metrics through the Model Context Protocol (MCP).
get-transactions
- Retrieve and filter transactions by account, date, amount, category, or payeeget-accounts
- Retrieve a list of all accounts with their current balance and IDbalance-history
- View account balance changes over timespending-by-category
- Generate spending breakdowns categorized by typemonthly-summary
- Get monthly income, expenses, and savings metricsget-grouped-categories
- Retrieve a list of all category groups with their categoriescreate-category
- Create a new category within a category groupupdate-category
- Update an existing category's name or groupdelete-category
- Delete a categorycreate-category-group
- Create a new category groupupdate-category-group
- Update a category group's namedelete-category-group
- Delete a category groupget-payees
- Retrieve a list of all payees with their detailscreate-payee
- Create a new payeeupdate-payee
- Update an existing payee's detailsdelete-payee
- Delete a payeeget-rules
- Retrieve a list of all transaction rulescreate-rule
- Create a new transaction rule with conditions and actionsupdate-rule
- Update an existing transaction ruledelete-rule
- Delete a transaction rulefinancial-insights
- Generate insights and recommendations based on your financial databudget-review
- Analyze your budget compliance and suggest adjustmentsPull the latest docker image:
docker pull sstefanov/actual-mcp:latest
git clone https://github.com/sstefanov/actual-mcp.git cd actual-mcp
npm install
npm run build
docker build -t <local-image-name> .
# Path to your Actual Budget data directory (default: ~/.actual) export ACTUAL_DATA_DIR="/path/to/your/actual/data" # If using a remote Actual server export ACTUAL_SERVER_URL="https://your-actual-server.com" export ACTUAL_PASSWORD="your-password" # Specific budget to use (optional) export ACTUAL_BUDGET_SYNC_ID="your-budget-id"
To use this server with Claude Desktop, add it to your Claude configuration:
On MacOS:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows:
code %APPDATA%\Claude\claude_desktop_config.json
Add the following to your configuration...
`*Configuration content*json
{
"mcpServers": {
"actualBudget": {
"command": "node",
"args": ["/path/to/your/clone/build/index.js", "--enable-write"],
"env": {
"ACTUAL_DATA_DIR": "path/to/your/data",
"ACTUAL_PASSWORD": "your-password",
"ACTUAL_SERVER_URL": "http://your-actual-server.com",
"ACTUAL_BUDGET_SYNC_ID": "your-budget-id"
}
}
}
}
### b. Using Docker (local or remote images):
*Configuration content*
After saving the configuration, restart Claude Desktop.
> 💡 `ACTUAL_DATA_DIR` is optional if you're using `ACTUAL_SERVER_URL`.
> 💡 Use `--enable-write` to enable write-access tools.
## Running an SSE Server
To expose the server over a port using Docker:
```bash
docker run -i --rm \
-p 3000:3000 \
-v "/path/to/your/data:/data" \
-e ACTUAL_PASSWORD="your-password" \
-e ACTUAL_SERVER_URL="http://your-actual-server.com" \
-e ACTUAL_BUDGET_SYNC_ID="your-budget-id" \
-e BEARER_TOKEN="your-bearer-token" \
sstefanov/actual-mcp:latest \
--sse --enable-write --enable-bearer
```
> ⚠️ Important: When using --enable-bearer, the BEARER\_TOKEN environment variable must be set.\
> 🔒 This is highly recommended if you're exposing your server via a public URL.
## Example Queries
Once connected, you can ask Claude questions like:
- "What's my current account balance?"
- "Show me my spending by category last month"
- "How much did I spend on groceries in January?"
- "What's my savings rate over the past 3 months?"
- "Analyze my budget and suggest areas to improve"
## Development
For development with auto-rebuild:
```bash
npm run watch
```
### Testing the connection to Actual
To verify the server can connect to your Actual Budget data:
```bash
node build/index.js --test-resources
```
### Debugging
Since MCP servers communicate over stdio, debugging can be challenging. You can use the [MCP Inspector](https://github.com/modelcontextprotocol/inspector):
```bash
npx @modelcontextprotocol/inspector node build/index.js
```
## Project Structure
- `index.ts` - Main server implementation
- `types.ts` - Type definitions for API responses and parameters
- `prompts.ts` - Prompt templates for LLM interactions
- `utils.ts` - Helper functions for date formatting and more
## License
MIT
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
4 contributors