@kanbodev/mcp 1.1.7 → 1.1.9

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 CHANGED
@@ -3,7 +3,9 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@kanbodev/mcp.svg)](https://www.npmjs.com/package/@kanbodev/mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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 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.
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
@@ -227,7 +227,7 @@ var init_constants = __esm(() => {
227
227
  };
228
228
  SERVER_INFO = {
229
229
  name: "kanbo-mcp",
230
- version: "1.1.7",
230
+ version: "1.1.9",
231
231
  description: "MCP server for Kanbo project management"
232
232
  };
233
233
  PAT_CONFIG = {
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@kanbodev/mcp",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "MCP (Model Context Protocol) server for Kanbo - AI-native project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "kanbodev-mcp": "./dist/index.js"
8
+ "kanbo-mcp": "dist/index.js"
9
9
  },
10
10
  "scripts": {
11
11
  "dev": "bun run --watch src/index.ts",
@@ -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
  }