actual-mcp-server 0.5.1 → 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 +1 -1
- package/dist/package.json +5 -1
- package/dist/src/index.js +4 -0
- package/package.json +5 -1
package/README.md
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
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",
|
|
6
10
|
"repository": {
|
|
7
11
|
"type": "git",
|
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,7 +1,11 @@
|
|
|
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",
|
|
6
10
|
"repository": {
|
|
7
11
|
"type": "git",
|