@kanbodev/mcp 1.0.4 → 1.1.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 -46
- package/dist/index.js +597 -354
- package/docs/SETUP.md +28 -22
- package/docs/VSCODE.md +11 -7
- package/package.json +1 -1
package/docs/SETUP.md
CHANGED
|
@@ -6,9 +6,9 @@ This guide covers two ways to set up the Kanbo MCP server for use with AI assist
|
|
|
6
6
|
|
|
7
7
|
## Option 1: Install via npm (Recommended)
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
One command to authenticate and register the MCP server with your editors.
|
|
10
10
|
|
|
11
|
-
### Step 1:
|
|
11
|
+
### Step 1: Login
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
14
|
npx @kanbodev/mcp login
|
|
@@ -18,8 +18,9 @@ This will:
|
|
|
18
18
|
1. Open your browser to sign in with your Kanbo account
|
|
19
19
|
2. Let you select which organization to use
|
|
20
20
|
3. Automatically create and store an API key
|
|
21
|
+
4. **Auto-register the MCP server** with detected editors (VS Code, Cursor, Claude Desktop, Claude Code CLI)
|
|
21
22
|
|
|
22
|
-
You'll see
|
|
23
|
+
You'll see output like:
|
|
23
24
|
|
|
24
25
|
```
|
|
25
26
|
✓ Successfully authenticated!
|
|
@@ -29,31 +30,32 @@ You'll see a success message when complete:
|
|
|
29
30
|
API Key: kanbo_pat_a1b2...
|
|
30
31
|
|
|
31
32
|
Config saved to: ~/.kanbo/config.json
|
|
33
|
+
|
|
34
|
+
MCP server registered with:
|
|
35
|
+
✓ Registered in VS Code
|
|
36
|
+
✓ Registered via Claude Code CLI
|
|
37
|
+
|
|
38
|
+
Reload your editor to activate the Kanbo MCP server.
|
|
32
39
|
```
|
|
33
40
|
|
|
34
|
-
### Step 2:
|
|
41
|
+
### Step 2: Reload your editor
|
|
35
42
|
|
|
36
|
-
|
|
43
|
+
Reload your editor window and you're ready to go. No manual config needed.
|
|
37
44
|
|
|
38
|
-
|
|
39
|
-
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
45
|
+
### Re-register with new editors
|
|
40
46
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"command": "npx",
|
|
46
|
-
"args": ["@kanbodev/mcp"]
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
47
|
+
If you install a new editor after logging in, run:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npx @kanbodev/mcp install
|
|
50
51
|
```
|
|
51
52
|
|
|
52
|
-
|
|
53
|
+
This re-detects editors and registers the MCP server where needed. It's idempotent — already-registered editors are skipped.
|
|
53
54
|
|
|
54
55
|
### Other CLI Commands
|
|
55
56
|
|
|
56
57
|
```bash
|
|
58
|
+
npx @kanbodev/mcp install # Register MCP server with detected editors
|
|
57
59
|
npx @kanbodev/mcp whoami # Check current authentication status
|
|
58
60
|
npx @kanbodev/mcp logout # Remove stored credentials
|
|
59
61
|
npx @kanbodev/mcp help # Show all available commands
|
|
@@ -127,14 +129,17 @@ This means you can:
|
|
|
127
129
|
|
|
128
130
|
## Using with Other AI Tools
|
|
129
131
|
|
|
132
|
+
> **Note:** `npx @kanbodev/mcp login` auto-registers with VS Code, Cursor, Claude Desktop, and Claude Code CLI. The manual configs below are only needed if auto-registration didn't detect your editor.
|
|
133
|
+
|
|
130
134
|
### Cursor
|
|
131
135
|
|
|
132
|
-
Add to
|
|
136
|
+
Add to `~/.cursor/mcp.json`:
|
|
133
137
|
|
|
134
138
|
```json
|
|
135
139
|
{
|
|
136
|
-
"
|
|
137
|
-
"
|
|
140
|
+
"servers": {
|
|
141
|
+
"kanbodev": {
|
|
142
|
+
"type": "stdio",
|
|
138
143
|
"command": "npx",
|
|
139
144
|
"args": ["@kanbodev/mcp"]
|
|
140
145
|
}
|
|
@@ -149,7 +154,7 @@ See the full [VS Code setup guide](VSCODE.md) for native MCP support (v1.99+), C
|
|
|
149
154
|
### Claude Code CLI
|
|
150
155
|
|
|
151
156
|
```bash
|
|
152
|
-
claude mcp add
|
|
157
|
+
claude mcp add kanbodev -- npx @kanbodev/mcp
|
|
153
158
|
```
|
|
154
159
|
|
|
155
160
|
---
|
|
@@ -209,7 +214,8 @@ rm ~/.kanbo/config.json
|
|
|
209
214
|
|
|
210
215
|
| Task | Command |
|
|
211
216
|
|------|---------|
|
|
212
|
-
| Authenticate | `npx @kanbodev/mcp login` |
|
|
217
|
+
| Authenticate + register | `npx @kanbodev/mcp login` |
|
|
218
|
+
| Register with editors | `npx @kanbodev/mcp install` |
|
|
213
219
|
| Check status | `npx @kanbodev/mcp whoami` |
|
|
214
220
|
| Logout | `npx @kanbodev/mcp logout` |
|
|
215
221
|
| Start server | `npx @kanbodev/mcp` |
|
package/docs/VSCODE.md
CHANGED
|
@@ -4,13 +4,15 @@ Connect Kanbo to your VS Code environment and manage projects, tickets, and work
|
|
|
4
4
|
|
|
5
5
|
## Prerequisites
|
|
6
6
|
|
|
7
|
-
**Authenticate
|
|
7
|
+
**Authenticate and register** (one-time setup):
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
npx @kanbodev/mcp login
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
This opens your browser, signs you in,
|
|
13
|
+
This opens your browser, signs you in, stores your credentials, and **auto-registers the MCP server with VS Code** (writes to your user-level `mcp.json`).
|
|
14
|
+
|
|
15
|
+
Reload VS Code and you're ready to go.
|
|
14
16
|
|
|
15
17
|
Verify it worked:
|
|
16
18
|
|
|
@@ -22,11 +24,11 @@ npx @kanbodev/mcp whoami
|
|
|
22
24
|
|
|
23
25
|
## VS Code Native MCP (v1.99+)
|
|
24
26
|
|
|
25
|
-
VS Code 1.99 and later has built-in MCP support through GitHub Copilot Chat.
|
|
27
|
+
VS Code 1.99 and later has built-in MCP support through GitHub Copilot Chat. The `login` command auto-registers at the user level, so no manual config is needed.
|
|
26
28
|
|
|
27
|
-
### Workspace-level setup
|
|
29
|
+
### Workspace-level setup (optional)
|
|
28
30
|
|
|
29
|
-
|
|
31
|
+
If you prefer per-project config instead of user-level, add to `.vscode/settings.json`:
|
|
30
32
|
|
|
31
33
|
```json
|
|
32
34
|
{
|
|
@@ -41,14 +43,16 @@ Add to `.vscode/settings.json` in your project:
|
|
|
41
43
|
}
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
###
|
|
46
|
+
### Manual user-level setup
|
|
45
47
|
|
|
46
|
-
|
|
48
|
+
If auto-registration didn't work, add the config to your **User Settings** (JSON):
|
|
47
49
|
|
|
48
50
|
1. Open Command Palette (`Cmd+Shift+P` / `Ctrl+Shift+P`)
|
|
49
51
|
2. Select **Preferences: Open User Settings (JSON)**
|
|
50
52
|
3. Add the `mcp` block above
|
|
51
53
|
|
|
54
|
+
Or run `npx @kanbodev/mcp install` to retry auto-registration.
|
|
55
|
+
|
|
52
56
|
### Using a manual API key
|
|
53
57
|
|
|
54
58
|
If you prefer environment variables over the login flow:
|