actual-mcp-server 0.5.0 → 0.5.1
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 +5 -1
- package/package.json +5 -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.1 | **Tool Count:** 62 (verified LibreChat-compatible)
|
package/bin/actual-mcp-server.js
CHANGED
|
File without changes
|
package/dist/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "actual-mcp-server",
|
|
3
3
|
"displayName": "Actual MCP Server",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"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
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/agigante80/actual-mcp-server"
|
|
9
|
+
},
|
|
6
10
|
"main": "dist/src/index.js",
|
|
7
11
|
"bin": {
|
|
8
12
|
"actual-mcp-server": "./bin/actual-mcp-server.js"
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "actual-mcp-server",
|
|
3
3
|
"displayName": "Actual MCP Server",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"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
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/agigante80/actual-mcp-server"
|
|
9
|
+
},
|
|
6
10
|
"main": "dist/src/index.js",
|
|
7
11
|
"bin": {
|
|
8
12
|
"actual-mcp-server": "./bin/actual-mcp-server.js"
|