@kanbodev/mcp 1.1.8 → 1.2.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 CHANGED
@@ -1,323 +1,323 @@
1
- # Kanbo MCP Server
2
-
3
- [![npm version](https://img.shields.io/npm/v/@kanbodev/mcp.svg)](https://www.npmjs.com/package/@kanbodev/mcp)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
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](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)
9
-
10
- ## Quick Setup
11
-
12
- ```bash
13
- npx @kanbodev/mcp login
14
- ```
15
-
16
- That's it. This single command will:
17
-
18
- 1. Open your browser to sign in and select your organization
19
- 2. Store credentials locally at `~/.kanbo/config.json`
20
- 3. **Auto-register the MCP server** with detected editors (VS Code, VS Code Insiders, Cursor, Windsurf, Claude Code, Claude Desktop, Claude Code CLI)
21
-
22
- Reload your editor and start using Kanbo tools immediately.
23
-
24
- ### Already logged in? Register manually
25
-
26
- If you authenticated previously and need to register with a new editor:
27
-
28
- ```bash
29
- npx @kanbodev/mcp install
30
- ```
31
-
32
- ### Manual setup
33
-
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` |
99
-
100
- ---
101
-
102
- ## User Guide
103
-
104
- Once connected, you interact with Kanbo through natural language. Here's what you can do and how to ask for it.
105
-
106
- ### Getting oriented
107
-
108
- Start by asking your AI assistant to discover your workspace:
109
-
110
- > "What Kanbo organizations do I have access to?"
111
- >
112
- > "List all my projects"
113
- >
114
- > "Show me the project stats for the frontend project"
115
-
116
- The assistant will call `list_organizations`, `list_projects`, and `get_project_stats` behind the scenes.
117
-
118
- ### Creating a ticket
119
-
120
- You can create tickets with as much or as little detail as you want:
121
-
122
- > "Create a ticket in the Frontend project called 'Fix login button not responding on mobile'"
123
-
124
- The assistant will look up your project, check for similar/related tickets, find available statuses, priorities, and sizes, then create the ticket with acceptance criteria. You can also be more specific:
125
-
126
- > "Create a high-priority bug in Frontend: 'Payment form crashes on Safari'. Assign it to me and put it in the To Do column."
127
-
128
- For AI-assisted creation:
129
-
130
- > "I need a ticket about improving the search performance. Can you polish the title, generate a description, and suggest the right priority and type?"
131
-
132
- This uses the AI tools (`polish_title`, `generate_description`, `suggest_attributes`) to craft a well-defined ticket before creating it.
133
-
134
- ### Acceptance criteria
135
-
136
- Every ticket includes structured acceptance criteria — specific, testable conditions that define "done":
137
-
138
- > "Add acceptance criteria to PROJ-123: users can export in CSV and JSON, progress shows for large exports, and errors display a retry option"
139
- >
140
- > "Show me the acceptance criteria for PROJ-45"
141
-
142
- The assistant uses Given/When/Then format and includes both happy-path and edge-case criteria automatically.
143
-
144
- ### Related tickets and subtasks
145
-
146
- The assistant checks for duplicates and related work before creating tickets, and supports parent-child relationships for breaking down work:
147
-
148
- > "Create a subtask under PROJ-100: 'Write unit tests for auth module'"
149
- >
150
- > "Show me the child tickets of PROJ-100"
151
- >
152
- > "Find tickets similar to 'password reset not working'"
153
-
154
- ### Finding and viewing tickets
155
-
156
- > "Show me all my assigned tickets"
157
- >
158
- > "What tickets are in the backlog for the API project?"
159
- >
160
- > "Get ticket PROJ-123"
161
- >
162
- > "What tickets are overdue?"
163
- >
164
- > "Show me tickets due in the next 3 days"
165
- >
166
- > "Search for tickets related to 'authentication'"
167
-
168
- ### Moving tickets through the workflow
169
-
170
- > "Move PROJ-123 to In Progress"
171
- >
172
- > "Complete ticket PROJ-45"
173
- >
174
- > "Move all the QA-approved tickets to Done"
175
-
176
- The assistant respects your workflow transition rules — it checks which status transitions are allowed before moving tickets.
177
-
178
- ### Managing the backlog
179
-
180
- > "Move PROJ-78 to the backlog"
181
- >
182
- > "Pull PROJ-78 back to the board and put it in To Do"
183
- >
184
- > "Show me the backlog for the mobile project"
185
- >
186
- > "Restore the deleted ticket PROJ-99 and put it in the backlog"
187
-
188
- ### Comments and collaboration
189
-
190
- > "Add a comment to PROJ-123: 'Tested on Chrome and Firefox, both working now'"
191
- >
192
- > "Show me the comments on PROJ-45"
193
- >
194
- > "What are my unread notifications?"
195
- >
196
- > "Mark all notifications as read"
197
-
198
- ### Tags and labels
199
-
200
- > "List all tags in the Frontend project"
201
- >
202
- > "Create a tag called 'performance' with color orange"
203
- >
204
- > "Tag PROJ-123 with 'performance' and 'backend'"
205
-
206
- ### Release management
207
-
208
- > "Create a release called 'v2.1.0' with target date March 15"
209
- >
210
- > "Add tickets PROJ-10, PROJ-11, and PROJ-12 to the v2.1.0 release"
211
- >
212
- > "Show me the burndown for v2.1.0"
213
- >
214
- > "Ship the v2.1.0 release"
215
-
216
- ### Bulk operations
217
-
218
- > "Complete all tickets in the Done column"
219
- >
220
- > "Assign all unassigned tickets in Sprint 5 to me"
221
- >
222
- > "Move these 10 tickets to the QA status"
223
-
224
- Batch operations work on up to 50 tickets at once.
225
-
226
- ### AI features
227
-
228
- > "Find tickets similar to 'user can't reset password'"
229
- >
230
- > "Fix the grammar in this ticket description: ..."
231
- >
232
- > "Make this description clearer: ..."
233
- >
234
- > "Check if this title is clear enough: 'fix thing'"
235
- >
236
- > "Create a ticket from my notes: users need to be able to export reports as PDF, it should respect filters, and show a progress bar for large exports"
237
-
238
- The last example passes your raw notes directly to `generate_description` — the AI organizes, structures, and expands them into a full ticket description rather than generating from scratch.
239
-
240
- ### Analytics and reporting
241
-
242
- > "Show me the team analytics for the Frontend project"
243
- >
244
- > "What's the average cycle time for tickets?"
245
- >
246
- > "Show the ticket distribution by priority and type"
247
-
248
- ### Checking usage
249
-
250
- > "How many MCP requests have I used today?"
251
- >
252
- > "What's my AI usage this week?"
253
-
254
- ---
255
-
256
- ## Example Workflows
257
-
258
- ### Daily standup
259
-
260
- > "Show me my tickets, any overdue items, and what's due this week"
261
-
262
- ### Sprint planning
263
-
264
- > "Create a release called 'Sprint 12' with target date Feb 28. Then show me the backlog so I can pick tickets to include."
265
-
266
- ### Triage new bugs
267
-
268
- > "Show me all tickets tagged 'bug' that don't have an assignee. For each one, suggest a priority and size."
269
-
270
- ### End of sprint
271
-
272
- > "Show me all tickets in Sprint 11. Complete the ones in the Done column, and move any incomplete ones to the backlog."
273
-
274
- ---
275
-
276
- ## Available Tools (125)
277
-
278
- | Category | Count | Key Tools |
279
- |----------|-------|-----------|
280
- | **Tickets** | 24 | `create_ticket`, `update_ticket`, `move_ticket`, `complete_ticket`, `get_my_tickets`, `get_overdue_tickets` |
281
- | **Projects** | 11 | `list_projects`, `create_project`, `get_project_stats`, `get_project_summaries` |
282
- | **Releases** | 17 | `create_release`, `assign_tickets_to_release`, `mark_release_shipped`, `get_release_burndown`, `get_release_history` |
283
- | **Workflow** | 8 | `list_statuses`, `get_available_transitions`, `create_status`, `create_transition` |
284
- | **Tags** | 8 | `list_tags`, `create_tag`, `add_tag_to_ticket`, `set_ticket_tags` |
285
- | **AI** | 8 | `polish_title`, `generate_description`, `find_similar_tickets`, `suggest_attributes` |
286
- | **Organization** | 6 | `list_organizations`, `set_organization`, `list_organization_members` |
287
- | **Comments** | 5 | `add_comment`, `list_comments`, `update_comment` |
288
- | **Notifications** | 5 | `list_notifications`, `get_unread_count`, `mark_all_notifications_read` |
289
- | **Priorities** | 5 | `list_priorities`, `create_priority`, `update_priority` |
290
- | **Sizes** | 5 | `list_sizes`, `create_size`, `update_size` |
291
- | **Ticket Types** | 5 | `list_ticket_types`, `create_ticket_type` |
292
- | **Members** | 4 | `add_project_member`, `remove_project_member`, `update_project_member_role` |
293
- | **Batch** | 3 | `batch_move_tickets`, `batch_complete_tickets`, `batch_assign_tickets` |
294
- | **Analytics** | 3 | `get_member_analytics`, `get_cycle_time_analytics`, `get_distribution_analytics` |
295
- | **History** | 2 | `get_ticket_history`, `get_project_activity` |
296
- | **Watchers** | 2 | `get_watch_status`, `toggle_watch` |
297
- | **Usage** | 2 | `get_mcp_usage`, `get_ai_usage` |
298
- | **Attachments** | 1 | `list_attachments` |
299
- | **Help** | 1 | `get_help` |
300
-
301
- ---
302
-
303
- ## CLI Commands
304
-
305
- ```bash
306
- npx @kanbodev/mcp login # Authenticate + auto-register MCP server
307
- npx @kanbodev/mcp install # Register MCP server with detected editors
308
- npx @kanbodev/mcp whoami # Check auth status
309
- npx @kanbodev/mcp logout # Remove credentials
310
- npx @kanbodev/mcp help # Show help
311
- npx @kanbodev/mcp version # Show version
312
- ```
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
-
321
- ## License
322
-
323
- MIT
1
+ # Kanbo MCP Server
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@kanbodev/mcp.svg)](https://www.npmjs.com/package/@kanbodev/mcp)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
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](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)
9
+
10
+ ## Quick Setup
11
+
12
+ ```bash
13
+ npx @kanbodev/mcp login
14
+ ```
15
+
16
+ That's it. This single command will:
17
+
18
+ 1. Open your browser to sign in and select your organization
19
+ 2. Store credentials locally at `~/.kanbo/config.json`
20
+ 3. **Auto-register the MCP server** with detected editors (VS Code, VS Code Insiders, Cursor, Windsurf, Claude Code, Claude Desktop, Claude Code CLI)
21
+
22
+ Reload your editor and start using Kanbo tools immediately.
23
+
24
+ ### Already logged in? Register manually
25
+
26
+ If you authenticated previously and need to register with a new editor:
27
+
28
+ ```bash
29
+ npx @kanbodev/mcp install
30
+ ```
31
+
32
+ ### Manual setup
33
+
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` |
99
+
100
+ ---
101
+
102
+ ## User Guide
103
+
104
+ Once connected, you interact with Kanbo through natural language. Here's what you can do and how to ask for it.
105
+
106
+ ### Getting oriented
107
+
108
+ Start by asking your AI assistant to discover your workspace:
109
+
110
+ > "What Kanbo organizations do I have access to?"
111
+ >
112
+ > "List all my projects"
113
+ >
114
+ > "Show me the project stats for the frontend project"
115
+
116
+ The assistant will call `list_organizations`, `list_projects`, and `get_project_stats` behind the scenes.
117
+
118
+ ### Creating a ticket
119
+
120
+ You can create tickets with as much or as little detail as you want:
121
+
122
+ > "Create a ticket in the Frontend project called 'Fix login button not responding on mobile'"
123
+
124
+ The assistant will look up your project, check for similar/related tickets, find available statuses, priorities, and sizes, then create the ticket with acceptance criteria. You can also be more specific:
125
+
126
+ > "Create a high-priority bug in Frontend: 'Payment form crashes on Safari'. Assign it to me and put it in the To Do column."
127
+
128
+ For AI-assisted creation:
129
+
130
+ > "I need a ticket about improving the search performance. Can you polish the title, generate a description, and suggest the right priority and type?"
131
+
132
+ This uses the AI tools (`polish_title`, `generate_description`, `suggest_attributes`) to craft a well-defined ticket before creating it.
133
+
134
+ ### Acceptance criteria
135
+
136
+ Every ticket includes structured acceptance criteria — specific, testable conditions that define "done":
137
+
138
+ > "Add acceptance criteria to PROJ-123: users can export in CSV and JSON, progress shows for large exports, and errors display a retry option"
139
+ >
140
+ > "Show me the acceptance criteria for PROJ-45"
141
+
142
+ The assistant uses Given/When/Then format and includes both happy-path and edge-case criteria automatically.
143
+
144
+ ### Related tickets and subtasks
145
+
146
+ The assistant checks for duplicates and related work before creating tickets, and supports parent-child relationships for breaking down work:
147
+
148
+ > "Create a subtask under PROJ-100: 'Write unit tests for auth module'"
149
+ >
150
+ > "Show me the child tickets of PROJ-100"
151
+ >
152
+ > "Find tickets similar to 'password reset not working'"
153
+
154
+ ### Finding and viewing tickets
155
+
156
+ > "Show me all my assigned tickets"
157
+ >
158
+ > "What tickets are in the backlog for the API project?"
159
+ >
160
+ > "Get ticket PROJ-123"
161
+ >
162
+ > "What tickets are overdue?"
163
+ >
164
+ > "Show me tickets due in the next 3 days"
165
+ >
166
+ > "Search for tickets related to 'authentication'"
167
+
168
+ ### Moving tickets through the workflow
169
+
170
+ > "Move PROJ-123 to In Progress"
171
+ >
172
+ > "Complete ticket PROJ-45"
173
+ >
174
+ > "Move all the QA-approved tickets to Done"
175
+
176
+ The assistant respects your workflow transition rules — it checks which status transitions are allowed before moving tickets.
177
+
178
+ ### Managing the backlog
179
+
180
+ > "Move PROJ-78 to the backlog"
181
+ >
182
+ > "Pull PROJ-78 back to the board and put it in To Do"
183
+ >
184
+ > "Show me the backlog for the mobile project"
185
+ >
186
+ > "Restore the deleted ticket PROJ-99 and put it in the backlog"
187
+
188
+ ### Comments and collaboration
189
+
190
+ > "Add a comment to PROJ-123: 'Tested on Chrome and Firefox, both working now'"
191
+ >
192
+ > "Show me the comments on PROJ-45"
193
+ >
194
+ > "What are my unread notifications?"
195
+ >
196
+ > "Mark all notifications as read"
197
+
198
+ ### Tags and labels
199
+
200
+ > "List all tags in the Frontend project"
201
+ >
202
+ > "Create a tag called 'performance' with color orange"
203
+ >
204
+ > "Tag PROJ-123 with 'performance' and 'backend'"
205
+
206
+ ### Release management
207
+
208
+ > "Create a release called 'v2.1.0' with target date March 15"
209
+ >
210
+ > "Add tickets PROJ-10, PROJ-11, and PROJ-12 to the v2.1.0 release"
211
+ >
212
+ > "Show me the burndown for v2.1.0"
213
+ >
214
+ > "Ship the v2.1.0 release"
215
+
216
+ ### Bulk operations
217
+
218
+ > "Complete all tickets in the Done column"
219
+ >
220
+ > "Assign all unassigned tickets in Sprint 5 to me"
221
+ >
222
+ > "Move these 10 tickets to the QA status"
223
+
224
+ Batch operations work on up to 50 tickets at once.
225
+
226
+ ### AI features
227
+
228
+ > "Find tickets similar to 'user can't reset password'"
229
+ >
230
+ > "Fix the grammar in this ticket description: ..."
231
+ >
232
+ > "Make this description clearer: ..."
233
+ >
234
+ > "Check if this title is clear enough: 'fix thing'"
235
+ >
236
+ > "Create a ticket from my notes: users need to be able to export reports as PDF, it should respect filters, and show a progress bar for large exports"
237
+
238
+ The last example passes your raw notes directly to `generate_description` — the AI organizes, structures, and expands them into a full ticket description rather than generating from scratch.
239
+
240
+ ### Analytics and reporting
241
+
242
+ > "Show me the team analytics for the Frontend project"
243
+ >
244
+ > "What's the average cycle time for tickets?"
245
+ >
246
+ > "Show the ticket distribution by priority and type"
247
+
248
+ ### Checking usage
249
+
250
+ > "How many MCP requests have I used today?"
251
+ >
252
+ > "What's my AI usage this week?"
253
+
254
+ ---
255
+
256
+ ## Example Workflows
257
+
258
+ ### Daily standup
259
+
260
+ > "Show me my tickets, any overdue items, and what's due this week"
261
+
262
+ ### Sprint planning
263
+
264
+ > "Create a release called 'Sprint 12' with target date Feb 28. Then show me the backlog so I can pick tickets to include."
265
+
266
+ ### Triage new bugs
267
+
268
+ > "Show me all tickets tagged 'bug' that don't have an assignee. For each one, suggest a priority and size."
269
+
270
+ ### End of sprint
271
+
272
+ > "Show me all tickets in Sprint 11. Complete the ones in the Done column, and move any incomplete ones to the backlog."
273
+
274
+ ---
275
+
276
+ ## Available Tools (125)
277
+
278
+ | Category | Count | Key Tools |
279
+ |----------|-------|-----------|
280
+ | **Tickets** | 24 | `create_ticket`, `update_ticket`, `move_ticket`, `complete_ticket`, `get_my_tickets`, `get_overdue_tickets` |
281
+ | **Projects** | 11 | `list_projects`, `create_project`, `get_project_stats`, `get_project_summaries` |
282
+ | **Releases** | 17 | `create_release`, `assign_tickets_to_release`, `mark_release_shipped`, `get_release_burndown`, `get_release_history` |
283
+ | **Workflow** | 8 | `list_statuses`, `get_available_transitions`, `create_status`, `create_transition` |
284
+ | **Tags** | 8 | `list_tags`, `create_tag`, `add_tag_to_ticket`, `set_ticket_tags` |
285
+ | **AI** | 8 | `polish_title`, `generate_description`, `find_similar_tickets`, `suggest_attributes` |
286
+ | **Organization** | 6 | `list_organizations`, `set_organization`, `list_organization_members` |
287
+ | **Comments** | 5 | `add_comment`, `list_comments`, `update_comment` |
288
+ | **Notifications** | 5 | `list_notifications`, `get_unread_count`, `mark_all_notifications_read` |
289
+ | **Priorities** | 5 | `list_priorities`, `create_priority`, `update_priority` |
290
+ | **Sizes** | 5 | `list_sizes`, `create_size`, `update_size` |
291
+ | **Ticket Types** | 5 | `list_ticket_types`, `create_ticket_type` |
292
+ | **Members** | 4 | `add_project_member`, `remove_project_member`, `update_project_member_role` |
293
+ | **Batch** | 3 | `batch_move_tickets`, `batch_complete_tickets`, `batch_assign_tickets` |
294
+ | **Analytics** | 3 | `get_member_analytics`, `get_cycle_time_analytics`, `get_distribution_analytics` |
295
+ | **History** | 2 | `get_ticket_history`, `get_project_activity` |
296
+ | **Watchers** | 2 | `get_watch_status`, `toggle_watch` |
297
+ | **Usage** | 2 | `get_mcp_usage`, `get_ai_usage` |
298
+ | **Attachments** | 1 | `list_attachments` |
299
+ | **Help** | 1 | `get_help` |
300
+
301
+ ---
302
+
303
+ ## CLI Commands
304
+
305
+ ```bash
306
+ npx @kanbodev/mcp login # Authenticate + auto-register MCP server
307
+ npx @kanbodev/mcp install # Register MCP server with detected editors
308
+ npx @kanbodev/mcp whoami # Check auth status
309
+ npx @kanbodev/mcp logout # Remove credentials
310
+ npx @kanbodev/mcp help # Show help
311
+ npx @kanbodev/mcp version # Show version
312
+ ```
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
+
321
+ ## License
322
+
323
+ MIT