@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.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # BusinessMap MCP Server
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@edicarlos.lds/businessmap-mcp.svg)](https://www.npmjs.com/package/@edicarlos.lds/businessmap-mcp)
4
- [![GitHub release](https://img.shields.io/github/v/release/edicarloslds/businessmap-mcp)](https://github.com/edicarloslds/businessmap-mcp/releases)
5
- [![npm downloads](https://img.shields.io/npm/dm/@edicarlos.lds/businessmap-mcp)](https://www.npmjs.com/package/@edicarlos.lds/businessmap-mcp)
3
+ [![npm version](https://img.shields.io/npm/v/@neilinger/businessmap-mcp.svg)](https://www.npmjs.com/package/@neilinger/businessmap-mcp)
4
+ [![GitHub release](https://img.shields.io/github/v/release/neilinger/businessmap-mcp)](https://github.com/neilinger/businessmap-mcp/releases)
5
+ [![npm downloads](https://img.shields.io/npm/dm/@neilinger/businessmap-mcp)](https://www.npmjs.com/package/@neilinger/businessmap-mcp)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
  [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/)
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?logo=typescript&logoColor=white)](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 @edicarlos.lds/businessmap-mcp
20
+ npx @neilinger/businessmap-mcp
21
21
  ```
22
22
 
23
23
  ### Global Installation
24
24
 
25
25
  ```bash
26
- npm install -g @edicarlos.lds/businessmap-mcp
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", "@edicarlos.lds/businessmap-mcp"],
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", "@edicarlos.lds/businessmap-mcp"],
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", "@edicarlos.lds/businessmap-mcp"],
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 @edicarlos.lds/businessmap-mcp` (or `businessmap-mcp` if globally installed)
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/edicarloslds/businessmap-mcp.git
118
+ git clone https://github.com/neilinger/businessmap-mcp.git
119
119
  cd businessmap-mcp
120
120
  ```
121
121
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neilinger/businessmap-mcp",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Model Context Protocol server for BusinessMap (Kanbanize) integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",