@kanbodev/mcp 1.1.7 → 1.1.8
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 +75 -2
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@kanbodev/mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
AI-native project management via [Model Context Protocol](https://modelcontextprotocol.io). Connect your AI assistant (VS Code, Cursor, Windsurf, Claude Code, Claude Desktop) to Kanbo and manage tickets, projects, releases, and workflows through natural conversation.
|
|
6
|
+
AI-native project management via [Model Context Protocol](https://modelcontextprotocol.io). Connect your AI assistant (VS Code, Cursor, Windsurf, Claude Code, Claude Desktop) to [Kanbo](https://www.kanbo.dev/) and manage tickets, projects, releases, and workflows through natural conversation.
|
|
7
|
+
|
|
8
|
+
[Try the demo](https://www.kanbo.dev/demo) | [See a live project](https://hub.kanbo.dev/dev/default)
|
|
7
9
|
|
|
8
10
|
## Quick Setup
|
|
9
11
|
|
|
@@ -29,7 +31,71 @@ npx @kanbodev/mcp install
|
|
|
29
31
|
|
|
30
32
|
### Manual setup
|
|
31
33
|
|
|
32
|
-
If auto-registration doesn't detect your editor, add the
|
|
34
|
+
If auto-registration doesn't detect your editor, add the config manually:
|
|
35
|
+
|
|
36
|
+
**VS Code / VS Code Insiders / Cursor** — add to `mcp.json`:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"servers": {
|
|
41
|
+
"kanbodev": {
|
|
42
|
+
"type": "stdio",
|
|
43
|
+
"command": "npx",
|
|
44
|
+
"args": ["@kanbodev/mcp"]
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
**Claude Desktop / Windsurf / Claude Code** — add to config with `mcpServers` key:
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"mcpServers": {
|
|
55
|
+
"kanbodev": {
|
|
56
|
+
"type": "stdio",
|
|
57
|
+
"command": "npx",
|
|
58
|
+
"args": ["@kanbodev/mcp"]
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**Claude Code CLI:**
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
claude mcp add kanbodev -- npx @kanbodev/mcp
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
<details>
|
|
71
|
+
<summary>Config file locations</summary>
|
|
72
|
+
|
|
73
|
+
| Editor | Config Path |
|
|
74
|
+
|--------|-------------|
|
|
75
|
+
| VS Code | `~/Library/Application Support/Code/User/mcp.json` (macOS) / `%APPDATA%\Code\User\mcp.json` (Windows) |
|
|
76
|
+
| VS Code Insiders | `~/Library/Application Support/Code - Insiders/User/mcp.json` (macOS) / `%APPDATA%\Code - Insiders\User\mcp.json` (Windows) |
|
|
77
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
78
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
79
|
+
| Claude Code | `~/.claude/settings.json` |
|
|
80
|
+
| Claude Desktop | `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) / `%APPDATA%\Claude\claude_desktop_config.json` (Windows) |
|
|
81
|
+
|
|
82
|
+
</details>
|
|
83
|
+
|
|
84
|
+
### Manual API key setup
|
|
85
|
+
|
|
86
|
+
If you prefer environment variables over the login flow:
|
|
87
|
+
|
|
88
|
+
1. Go to your Kanbo dashboard → **Settings → API Keys**
|
|
89
|
+
2. Create a new key and copy the token
|
|
90
|
+
3. Add `"env": { "KANBO_API_KEY": "kanbo_pat_..." }` to your editor's MCP config
|
|
91
|
+
|
|
92
|
+
### Environment variables
|
|
93
|
+
|
|
94
|
+
| Variable | Description | Default |
|
|
95
|
+
|----------|-------------|---------|
|
|
96
|
+
| `KANBO_API_KEY` | Personal Access Token (overrides config file) | from `~/.kanbo/config.json` |
|
|
97
|
+
| `KANBO_API_URL` | API server URL | `https://api.kanbo.dev` |
|
|
98
|
+
| `KANBO_WEB_URL` | Web app URL for login | `https://kanbo.dev` |
|
|
33
99
|
|
|
34
100
|
---
|
|
35
101
|
|
|
@@ -245,6 +311,13 @@ npx @kanbodev/mcp help # Show help
|
|
|
245
311
|
npx @kanbodev/mcp version # Show version
|
|
246
312
|
```
|
|
247
313
|
|
|
314
|
+
## Links
|
|
315
|
+
|
|
316
|
+
- [Kanbo Website](https://www.kanbo.dev/)
|
|
317
|
+
- [Interactive Demo](https://www.kanbo.dev/demo)
|
|
318
|
+
- [Public Project Hub](https://hub.kanbo.dev/dev/default)
|
|
319
|
+
- [npm Package](https://www.npmjs.com/package/@kanbodev/mcp)
|
|
320
|
+
|
|
248
321
|
## License
|
|
249
322
|
|
|
250
323
|
MIT
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kanbodev/mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Kanbo - AI-native project management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"claude",
|
|
42
42
|
"cursor"
|
|
43
43
|
],
|
|
44
|
+
"homepage": "https://kanbo.dev",
|
|
44
45
|
"author": "Kanbo",
|
|
45
46
|
"license": "MIT"
|
|
46
47
|
}
|