actual-budget-mcp
MCP server for Actual Budget that enables AI agents to read accounts, transactions, categories, and budgets, as well as create and update transactions and transfers.
README
Actual Budget MCP Server
An MCP server for Actual Budget built with FastMCP and actualpy.
Requirements
- Python 3.11+
- uv
- A running Actual Budget server
Setup
git clone https://github.com/Saikumarmohan/actual-budget-mcp
cd actual-budget-mcp
uv sync
Configuration
All configuration is done via environment variables. Pass them via your MCP client config.
| Variable | Required | Default | Description |
|---|---|---|---|
ACTUAL_BASE_URL |
✅ | - | URL of your Actual Budget server |
ACTUAL_PASSWORD |
✅ | - | Actual Budget server password |
ACTUAL_FILE |
✅ | - | Budget file name or sync id |
ACTUAL_CURRENCY |
❌ | USD |
Currency code e.g. INR, EUR |
ACTUAL_CURRENCY_SYMBOL |
❌ | $ |
Currency symbol e.g. ₹, € |
ACTUAL_TIMEZONE |
❌ | UTC |
Timezone e.g. Asia/Kolkata, America/New_York |
ACTUAL_MCP_TRANSPORT |
❌ | stdio |
Transport mode — stdio for Cline/Cursor, http for Docker |
ACTUAL_MCP_HOST |
❌ | 0.0.0.0 |
Host to bind to in HTTP mode |
ACTUAL_MCP_PORT |
❌ | 8000 |
Port to bind to in HTTP mode |
MCP Client Config (Cline / Cursor)
Replace /path/to/actualbudgetpy with the absolute path to this project on your machine.
{
"mcpServers": {
"actualbudget": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/actualbudgetpy",
"-m",
"actualbudgetpy.server"
],
"env": {
"ACTUAL_BASE_URL": "http://localhost:5006",
"ACTUAL_PASSWORD": "your_password",
"ACTUAL_FILE": "your_file_id_or_name",
"ACTUAL_CURRENCY": "USD",
"ACTUAL_CURRENCY_SYMBOL": "$",
"ACTUAL_TIMEZONE": "UTC"
}
}
}
}
Note: On Windows, use the full path to
uv.exeinstead of justuve.g.C:\\Users\\username\\.local\\bin\\uv.exe
HTTP Mode (Local)
For running as a standalone HTTP server locally:
- Copy
.env.exampleto.envand fill in your values:
cp .env.example .env
- Set transport to
httpin your.env:
ACTUAL_MCP_TRANSPORT=http
- Start the server:
uv run -m actualbudgetpy.server
- Point your MCP client to
http://localhost:8000/mcp:
{
"mcpServers": {
"actualbudget": {
"type": "streamable-http",
"url": "http://localhost:8000/mcp"
}
}
}
Docker
# build
docker build -t actualbudgetpy .
# run
docker run -p 8000:8000 \
-e ACTUAL_BASE_URL=http://your-server:5006 \
-e ACTUAL_PASSWORD=your_password \
-e ACTUAL_FILE=your_file_id \
-e ACTUAL_CURRENCY=USD \
-e ACTUAL_CURRENCY_SYMBOL=$ \
-e ACTUAL_TIMEZONE=UTC \
actualbudgetpy
Then point your MCP client to http://localhost:8000/mcp.
Available Tools
Read
| Tool | Description |
|---|---|
list_accounts |
List all accounts |
list_payees |
List all payees |
list_transactions |
List transactions with optional filters — date, account, category, payee, notes |
list_categories |
List all categories, filterable by income or expense |
list_category_groups |
List all category groups |
list_budgets |
List budget allocations by month |
Write
| Tool | Description |
|---|---|
add_transaction |
Create a new transaction |
update_transaction |
Update an existing transaction |
delete_transaction |
Delete a transaction by id |
create_transfer |
Transfer money between two accounts |
set_budget |
Set budget amount for a category in a month |
Resources
Resources are read-only data the AI can attach as context at the start of a conversation.
| Resource | Description |
|---|---|
budget://accounts |
Live list of all accounts |
budget://categories |
Live list of all categories |
Prompts
Reusable prompt templates that guide the AI through common workflows.
| Prompt | Parameters | Description |
|---|---|---|
monthly_review |
month (YYYY-MM) |
Full budget vs spending analysis for a month |
spending_by_category |
category, start_date, end_date |
Spending breakdown for a specific category |
add_expense |
description |
Natural language guided expense entry |
Author
Built by Saikumar — feel free to connect!
If you find this useful, consider giving it a ⭐ on GitHub.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.