actual-mcp-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
actual-mcp-server by agigante80 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 15 | ★ 149 |
| 30d uses | — | — |
| Score | 44 | 85 |
| Official | — | — |
| Categories | FinanceProductivityAI / LLM Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
actual-mcp-server · Summary
MCP server connecting Claude Desktop/LibreChat/LobeChat to Actual Budget with 63 tools for natural-language financial management.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
actual-mcp-server · Use cases
- Natural language budget management and transaction creation
- Spending analysis and financial insights without leaving the chat interface
- Multi-user budget management with secure authentication
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
actual-mcp-server · Install
Docker Installation (Recommended)
docker run -d \
--name actual-mcp-server-backend \
-p 3600:3600 \
-e ACTUAL_SERVER_URL=http://localhost:5006 \
-e ACTUAL_PASSWORD=your_password \
-e ACTUAL_BUDGET_SYNC_ID=your_sync_id \
-e MCP_SSE_AUTHORIZATION=your_secret_token \
-v actual-mcp-data:/data \
ghcr.io/agigante80/actual-mcp-server:latestClaude Desktop Configuration
{
"mcpServers": {
"actual-budget": {
"command": "npx",
"args": ["-y", "actual-mcp-server", "--stdio"],
"env": {
"ACTUAL_SERVER_URL": "http://localhost:5006",
"ACTUAL_PASSWORD": "your_actual_password",
"ACTUAL_BUDGET_SYNC_ID": "your-sync-id-here",
"MCP_BRIDGE_DATA_DIR": "/absolute/path/to/data-dir"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server