monobank-mcp-server 1.1.0 → 1.2.0
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 +12 -0
- package/build/index.js +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -53,6 +53,18 @@ To use this server with an MCP client, add it to your configuration:
|
|
|
53
53
|
- "Покажи всі транзакції за жовтень"
|
|
54
54
|
- "Скільки я витратив на їжу за останній місяць?"
|
|
55
55
|
|
|
56
|
+
## MCPB (One-Click Installation)
|
|
57
|
+
|
|
58
|
+
This server is available as an MCPB bundle for one-click installation in Claude Desktop and Claude Code.
|
|
59
|
+
|
|
60
|
+
To build the `.mcpb` bundle locally:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
npm run pack:mcpb
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
This produces `monobank-mcp-server.mcpb` which can be installed directly in any MCPB-compatible client. During installation, you'll be prompted to enter your Monobank API token securely.
|
|
67
|
+
|
|
56
68
|
## License
|
|
57
69
|
|
|
58
70
|
MIT
|
package/build/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { createSuccessResponse, fetchWithErrorHandling, parseJsonResponse, forma
|
|
|
7
7
|
import { initializeConfig, getConfig } from "./config.js";
|
|
8
8
|
const server = new McpServer({
|
|
9
9
|
name: "monobank-mcp-server",
|
|
10
|
-
version: "1.
|
|
10
|
+
version: "1.2.0",
|
|
11
11
|
});
|
|
12
12
|
server.tool("get_currency_rates", "Get a basic list of currency rates from Monobank. The information can be refreshed once per 5 minutes, otherwise an error will be thrown.", {}, async () => {
|
|
13
13
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monobank-mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"mcpName": "io.github.akutishevsky/monobank-mcp-server",
|
|
4
5
|
"description": "MCP server for Monobank API integration",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"bin": {
|
|
@@ -10,7 +11,8 @@
|
|
|
10
11
|
"build": "tsc && chmod +x build/index.js",
|
|
11
12
|
"format": "prettier --write src/",
|
|
12
13
|
"lint": "eslint src/",
|
|
13
|
-
"prepublishOnly": "npm run build"
|
|
14
|
+
"prepublishOnly": "npm run build",
|
|
15
|
+
"pack:mcpb": "npm run build && rm -rf mcpb-staging && mkdir -p mcpb-staging/server && cp -r build/* mcpb-staging/server/ && cp -r node_modules mcpb-staging/node_modules && cp package.json mcpb-staging/package.json && cp manifest.json mcpb-staging/manifest.json && cd mcpb-staging && zip -r ../monobank-mcp-server.mcpb . && cd .. && rm -rf mcpb-staging"
|
|
14
16
|
},
|
|
15
17
|
"files": [
|
|
16
18
|
"build"
|