actual-mcp-server 0.5.0 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -1
- package/bin/actual-mcp-server.js +0 -0
- package/dist/package.json +9 -1
- package/dist/src/index.js +4 -0
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -128,6 +128,14 @@ docker compose --profile fullstack up -d # includes Actual Budget server on :
|
|
|
128
128
|
### Option C — npm (HTTP server)
|
|
129
129
|
|
|
130
130
|
```bash
|
|
131
|
+
# Quick start via npx (no clone needed):
|
|
132
|
+
ACTUAL_SERVER_URL=http://localhost:5006 \
|
|
133
|
+
ACTUAL_PASSWORD=your_password \
|
|
134
|
+
ACTUAL_BUDGET_SYNC_ID=your-sync-id \
|
|
135
|
+
MCP_SSE_AUTHORIZATION=your_token \
|
|
136
|
+
npx actual-mcp-server --http
|
|
137
|
+
|
|
138
|
+
# Or clone for development / custom config:
|
|
131
139
|
git clone https://github.com/agigante80/actual-mcp-server.git
|
|
132
140
|
cd actual-mcp-server
|
|
133
141
|
npm install
|
|
@@ -660,4 +668,4 @@ The software is provided **as-is**, without warranty of any kind. The author acc
|
|
|
660
668
|
|
|
661
669
|
---
|
|
662
670
|
|
|
663
|
-
**Version:** 0.5.
|
|
671
|
+
**Version:** 0.5.2 | **Tool Count:** 62 (verified LibreChat-compatible)
|
package/bin/actual-mcp-server.js
CHANGED
|
File without changes
|
package/dist/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "actual-mcp-server",
|
|
3
3
|
"displayName": "Actual MCP Server",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.3",
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=20.0.0",
|
|
7
|
+
"npm": ">=10.0.0"
|
|
8
|
+
},
|
|
5
9
|
"description": "MCP server with 62 tools for AI-driven financial management with Actual Budget — HTTP and stdio transports, LibreChat, Claude Desktop, Cursor, VS Code, Gemini CLI",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/agigante80/actual-mcp-server"
|
|
13
|
+
},
|
|
6
14
|
"main": "dist/src/index.js",
|
|
7
15
|
"bin": {
|
|
8
16
|
"actual-mcp-server": "./bin/actual-mcp-server.js"
|
package/dist/src/index.js
CHANGED
|
@@ -72,6 +72,10 @@ const argsEarly = process.argv.slice(2);
|
|
|
72
72
|
// whether to route all output to stderr (required in stdio mode — stdout writes corrupt JSON-RPC).
|
|
73
73
|
if (argsEarly.includes('--stdio')) {
|
|
74
74
|
process.env.MCP_STDIO_MODE = 'true';
|
|
75
|
+
// dotenv v17 outputs diagnostic text to stdout by default (console.log).
|
|
76
|
+
// In stdio mode stdout is the JSON-RPC channel — any non-JSON output corrupts
|
|
77
|
+
// the framing and causes MCP clients to close the connection immediately.
|
|
78
|
+
process.env.DOTENV_CONFIG_QUIET = 'true';
|
|
75
79
|
}
|
|
76
80
|
// Only load dotenv if we're not just showing help
|
|
77
81
|
// dotenv will be loaded inside the async IIFE below via dynamic import
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "actual-mcp-server",
|
|
3
3
|
"displayName": "Actual MCP Server",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.3",
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=20.0.0",
|
|
7
|
+
"npm": ">=10.0.0"
|
|
8
|
+
},
|
|
5
9
|
"description": "MCP server with 62 tools for AI-driven financial management with Actual Budget — HTTP and stdio transports, LibreChat, Claude Desktop, Cursor, VS Code, Gemini CLI",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/agigante80/actual-mcp-server"
|
|
13
|
+
},
|
|
6
14
|
"main": "dist/src/index.js",
|
|
7
15
|
"bin": {
|
|
8
16
|
"actual-mcp-server": "./bin/actual-mcp-server.js"
|