@edicarlos.lds/businessmap-mcp 1.1.1 → 1.1.4

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # BusinessMap MCP Server
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/@edicarlos.lds%2Fbusinessmap-mcp.svg)](https://badge.fury.io/js/@edicarlos.lds%2Fbusinessmap-mcp)
4
+ [![GitHub release](https://img.shields.io/github/v/release/edicarloslds/businessmap-mcp)](https://github.com/edicarloslds/businessmap-mcp/releases)
4
5
  [![npm downloads](https://img.shields.io/npm/dm/@edicarlos.lds/businessmap-mcp)](https://www.npmjs.com/package/@edicarlos.lds/businessmap-mcp)
5
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
7
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/)
@@ -206,7 +207,6 @@ The server now includes automatic connection verification during startup. If you
206
207
  3. **Common issues**:
207
208
  - **Invalid API URL**: Ensure your URL follows the format `https://your-account.kanbanize.com/api/v2`
208
209
  - **Invalid API Token**: Verify your token has the necessary permissions
209
- - **Network connectivity**: Check if you can reach the API URL from your network
210
210
 
211
211
  ### Startup Process
212
212
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edicarlos.lds/businessmap-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.1.4",
4
4
  "description": "Model Context Protocol server for BusinessMap (Kanbanize) integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -14,6 +14,7 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "build": "tsc",
17
+ "postbuild": "chmod +x dist/index.js",
17
18
  "start": "node dist/index.js",
18
19
  "dev": "tsx src/index.ts",
19
20
  "watch": "tsx --watch src/index.ts",
@@ -57,8 +58,9 @@
57
58
  },
58
59
  "dependencies": {
59
60
  "@modelcontextprotocol/sdk": "^1.17.0",
60
- "axios": "^1.6.0",
61
+ "axios": "^1.7.0",
61
62
  "dotenv": "^16.3.1",
63
+ "form-data": "^4.0.4",
62
64
  "zod": "^3.22.0"
63
65
  },
64
66
  "devDependencies": {