@neilinger/businessmap-mcp 1.6.0 → 1.6.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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# BusinessMap MCP Server
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@neilinger/businessmap-mcp)
|
|
4
|
+
[](https://github.com/neilinger/businessmap-mcp/releases)
|
|
5
|
+
[](https://www.npmjs.com/package/@neilinger/businessmap-mcp)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
[](https://nodejs.org/)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
@@ -17,13 +17,13 @@ Model Context Protocol server for BusinessMap (Kanbanize) integration. Provides
|
|
|
17
17
|
You can run the BusinessMap MCP server directly using npx without installing it globally:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npx @
|
|
20
|
+
npx @neilinger/businessmap-mcp
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### Global Installation
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
npm install -g @
|
|
26
|
+
npm install -g @neilinger/businessmap-mcp
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Configuration
|
|
@@ -46,7 +46,7 @@ Add the following configuration to your `claude_desktop_config.json` file:
|
|
|
46
46
|
"mcpServers": {
|
|
47
47
|
"Businessmap": {
|
|
48
48
|
"command": "npx",
|
|
49
|
-
"args": ["-y", "@
|
|
49
|
+
"args": ["-y", "@neilinger/businessmap-mcp"],
|
|
50
50
|
"env": {
|
|
51
51
|
"BUSINESSMAP_API_TOKEN": "your_token_here",
|
|
52
52
|
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
|
|
@@ -70,7 +70,7 @@ To use the BusinessMap MCP server with Cursor, add the following configuration t
|
|
|
70
70
|
{
|
|
71
71
|
"name": "BusinessMap",
|
|
72
72
|
"command": "npx",
|
|
73
|
-
"args": ["-y", "@
|
|
73
|
+
"args": ["-y", "@neilinger/businessmap-mcp"],
|
|
74
74
|
"env": {
|
|
75
75
|
"BUSINESSMAP_API_TOKEN": "your_token_here",
|
|
76
76
|
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
|
|
@@ -91,7 +91,7 @@ To use the BusinessMap MCP server with VSCode, add the following configuration:
|
|
|
91
91
|
"servers": {
|
|
92
92
|
"businessmap": {
|
|
93
93
|
"command": "npx",
|
|
94
|
-
"args": ["-y", "@
|
|
94
|
+
"args": ["-y", "@neilinger/businessmap-mcp"],
|
|
95
95
|
"env": {
|
|
96
96
|
"BUSINESSMAP_API_TOKEN": "your_token_here",
|
|
97
97
|
"BUSINESSMAP_API_URL": "https://your-account.kanbanize.com/api/v2",
|
|
@@ -107,7 +107,7 @@ To use the BusinessMap MCP server with VSCode, add the following configuration:
|
|
|
107
107
|
|
|
108
108
|
For other MCP clients, use the appropriate configuration format for your client, ensuring you specify:
|
|
109
109
|
|
|
110
|
-
- Command: `npx @
|
|
110
|
+
- Command: `npx @neilinger/businessmap-mcp` (or `businessmap-mcp` if globally installed)
|
|
111
111
|
- Environment variables: `BUSINESSMAP_API_TOKEN`, `BUSINESSMAP_API_URL`, and optionally `BUSINESSMAP_READ_ONLY_MODE`, `BUSINESSMAP_DEFAULT_WORKSPACE_ID`
|
|
112
112
|
|
|
113
113
|
### Manual Setup
|
|
@@ -115,7 +115,7 @@ For other MCP clients, use the appropriate configuration format for your client,
|
|
|
115
115
|
1. Clone this repository:
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
|
-
git clone https://github.com/
|
|
118
|
+
git clone https://github.com/neilinger/businessmap-mcp.git
|
|
119
119
|
cd businessmap-mcp
|
|
120
120
|
```
|
|
121
121
|
|