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 CHANGED
@@ -668,4 +668,4 @@ The software is provided **as-is**, without warranty of any kind. The author acc
668
668
 
669
669
  ---
670
670
 
671
- **Version:** 0.5.1 | **Tool Count:** 62 (verified LibreChat-compatible)
671
+ **Version:** 0.5.2 | **Tool Count:** 62 (verified LibreChat-compatible)
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.1",
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.1",
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",