@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/README.md
CHANGED
|
@@ -7,64 +7,29 @@ AI-native project management via [Model Context Protocol](https://modelcontextpr
|
|
|
7
7
|
|
|
8
8
|
## Quick Setup
|
|
9
9
|
|
|
10
|
-
### 1. Authenticate
|
|
11
|
-
|
|
12
10
|
```bash
|
|
13
11
|
npx @kanbodev/mcp login
|
|
14
12
|
```
|
|
15
13
|
|
|
16
|
-
|
|
14
|
+
That's it. This single command will:
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
1. Open your browser to sign in and select your organization
|
|
17
|
+
2. Store credentials locally at `~/.kanbo/config.json`
|
|
18
|
+
3. **Auto-register the MCP server** with detected editors (VS Code, Cursor, Claude Desktop, Claude Code CLI)
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Reload your editor and start using Kanbo tools immediately.
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
{
|
|
24
|
-
"mcpServers": {
|
|
25
|
-
"kanbo": {
|
|
26
|
-
"command": "npx",
|
|
27
|
-
"args": ["@kanbodev/mcp"]
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
```
|
|
22
|
+
### Already logged in? Register manually
|
|
32
23
|
|
|
33
|
-
|
|
24
|
+
If you authenticated previously and need to register with a new editor:
|
|
34
25
|
|
|
35
26
|
```bash
|
|
36
|
-
|
|
27
|
+
npx @kanbodev/mcp install
|
|
37
28
|
```
|
|
38
29
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
```json
|
|
42
|
-
{
|
|
43
|
-
"mcp": {
|
|
44
|
-
"servers": {
|
|
45
|
-
"kanbo": {
|
|
46
|
-
"command": "npx",
|
|
47
|
-
"args": ["@kanbodev/mcp"]
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
**Cursor** — add to your MCP settings:
|
|
55
|
-
|
|
56
|
-
```json
|
|
57
|
-
{
|
|
58
|
-
"mcpServers": {
|
|
59
|
-
"kanbo": {
|
|
60
|
-
"command": "npx",
|
|
61
|
-
"args": ["@kanbodev/mcp"]
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
```
|
|
30
|
+
### Manual setup
|
|
66
31
|
|
|
67
|
-
|
|
32
|
+
If auto-registration doesn't detect your editor, add the MCP server config manually. See [docs/SETUP.md](docs/SETUP.md) for manual API key setup, per-editor config snippets, and troubleshooting. See [docs/VSCODE.md](docs/VSCODE.md) for detailed VS Code setup.
|
|
68
33
|
|
|
69
34
|
---
|
|
70
35
|
|
|
@@ -246,7 +211,8 @@ Batch operations work on up to 50 tickets at once.
|
|
|
246
211
|
## CLI Commands
|
|
247
212
|
|
|
248
213
|
```bash
|
|
249
|
-
npx @kanbodev/mcp login # Authenticate
|
|
214
|
+
npx @kanbodev/mcp login # Authenticate + auto-register MCP server
|
|
215
|
+
npx @kanbodev/mcp install # Register MCP server with detected editors
|
|
250
216
|
npx @kanbodev/mcp whoami # Check auth status
|
|
251
217
|
npx @kanbodev/mcp logout # Remove credentials
|
|
252
218
|
npx @kanbodev/mcp help # Show help
|