@kanbodev/mcp 1.0.2
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 +258 -0
- package/dist/index.js +42794 -0
- package/docs/SETUP.md +216 -0
- package/docs/VSCODE.md +207 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
# Kanbo MCP Server
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@kanbodev/mcp)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
AI-native project management via [Model Context Protocol](https://modelcontextprotocol.io). Connect your AI assistant (Claude, Cursor, VS Code, Claude Code) to Kanbo and manage tickets, projects, releases, and workflows through natural conversation.
|
|
7
|
+
|
|
8
|
+
## Quick Setup
|
|
9
|
+
|
|
10
|
+
### 1. Authenticate
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npx @kanbodev/mcp login
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
This opens your browser to sign in, select your organization, and store credentials locally.
|
|
17
|
+
|
|
18
|
+
### 2. Connect to your AI assistant
|
|
19
|
+
|
|
20
|
+
**Claude Desktop** — add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
|
|
21
|
+
|
|
22
|
+
```json
|
|
23
|
+
{
|
|
24
|
+
"mcpServers": {
|
|
25
|
+
"kanbo": {
|
|
26
|
+
"command": "npx",
|
|
27
|
+
"args": ["@kanbodev/mcp"]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**Claude Code CLI:**
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
claude mcp add kanbo -- npx @kanbodev/mcp
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**VS Code** (v1.99+) — add to `.vscode/settings.json`:
|
|
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
|
+
```
|
|
66
|
+
|
|
67
|
+
Then restart your AI assistant. See [docs/SETUP.md](docs/SETUP.md) for manual API key setup, troubleshooting, and [VS Code guide](docs/VSCODE.md) for detailed editor setup.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## User Guide
|
|
72
|
+
|
|
73
|
+
Once connected, you interact with Kanbo through natural language. Here's what you can do and how to ask for it.
|
|
74
|
+
|
|
75
|
+
### Getting oriented
|
|
76
|
+
|
|
77
|
+
Start by asking your AI assistant to discover your workspace:
|
|
78
|
+
|
|
79
|
+
> "What Kanbo organizations do I have access to?"
|
|
80
|
+
>
|
|
81
|
+
> "List all my projects"
|
|
82
|
+
>
|
|
83
|
+
> "Show me the project stats for the frontend project"
|
|
84
|
+
|
|
85
|
+
The assistant will call `list_organizations`, `list_projects`, and `get_project_stats` behind the scenes.
|
|
86
|
+
|
|
87
|
+
### Creating a ticket
|
|
88
|
+
|
|
89
|
+
You can create tickets with as much or as little detail as you want:
|
|
90
|
+
|
|
91
|
+
> "Create a ticket in the Frontend project called 'Fix login button not responding on mobile'"
|
|
92
|
+
|
|
93
|
+
The assistant will look up your project, find available statuses, priorities, and sizes, then create the ticket. You can also be more specific:
|
|
94
|
+
|
|
95
|
+
> "Create a high-priority bug in Frontend: 'Payment form crashes on Safari'. Assign it to me and put it in the To Do column."
|
|
96
|
+
|
|
97
|
+
For AI-assisted creation:
|
|
98
|
+
|
|
99
|
+
> "I need a ticket about improving the search performance. Can you polish the title, generate a description, and suggest the right priority and type?"
|
|
100
|
+
|
|
101
|
+
This uses the AI tools (`polish_title`, `generate_description`, `suggest_attributes`) to craft a well-defined ticket before creating it.
|
|
102
|
+
|
|
103
|
+
### Finding and viewing tickets
|
|
104
|
+
|
|
105
|
+
> "Show me all my assigned tickets"
|
|
106
|
+
>
|
|
107
|
+
> "What tickets are in the backlog for the API project?"
|
|
108
|
+
>
|
|
109
|
+
> "Get ticket PROJ-123"
|
|
110
|
+
>
|
|
111
|
+
> "What tickets are overdue?"
|
|
112
|
+
>
|
|
113
|
+
> "Show me tickets due in the next 3 days"
|
|
114
|
+
>
|
|
115
|
+
> "Search for tickets related to 'authentication'"
|
|
116
|
+
|
|
117
|
+
### Moving tickets through the workflow
|
|
118
|
+
|
|
119
|
+
> "Move PROJ-123 to In Progress"
|
|
120
|
+
>
|
|
121
|
+
> "Complete ticket PROJ-45"
|
|
122
|
+
>
|
|
123
|
+
> "Move all the QA-approved tickets to Done"
|
|
124
|
+
|
|
125
|
+
The assistant respects your workflow transition rules — it checks which status transitions are allowed before moving tickets.
|
|
126
|
+
|
|
127
|
+
### Managing the backlog
|
|
128
|
+
|
|
129
|
+
> "Move PROJ-78 to the backlog"
|
|
130
|
+
>
|
|
131
|
+
> "Pull PROJ-78 back to the board and put it in To Do"
|
|
132
|
+
>
|
|
133
|
+
> "Show me the backlog for the mobile project"
|
|
134
|
+
|
|
135
|
+
### Comments and collaboration
|
|
136
|
+
|
|
137
|
+
> "Add a comment to PROJ-123: 'Tested on Chrome and Firefox, both working now'"
|
|
138
|
+
>
|
|
139
|
+
> "Show me the comments on PROJ-45"
|
|
140
|
+
>
|
|
141
|
+
> "What are my unread notifications?"
|
|
142
|
+
>
|
|
143
|
+
> "Mark all notifications as read"
|
|
144
|
+
|
|
145
|
+
### Tags and labels
|
|
146
|
+
|
|
147
|
+
> "List all tags in the Frontend project"
|
|
148
|
+
>
|
|
149
|
+
> "Create a tag called 'performance' with color orange"
|
|
150
|
+
>
|
|
151
|
+
> "Tag PROJ-123 with 'performance' and 'backend'"
|
|
152
|
+
|
|
153
|
+
### Release management
|
|
154
|
+
|
|
155
|
+
> "Create a release called 'v2.1.0' with target date March 15"
|
|
156
|
+
>
|
|
157
|
+
> "Add tickets PROJ-10, PROJ-11, and PROJ-12 to the v2.1.0 release"
|
|
158
|
+
>
|
|
159
|
+
> "Show me the burndown for v2.1.0"
|
|
160
|
+
>
|
|
161
|
+
> "Ship the v2.1.0 release"
|
|
162
|
+
|
|
163
|
+
### Bulk operations
|
|
164
|
+
|
|
165
|
+
> "Complete all tickets in the Done column"
|
|
166
|
+
>
|
|
167
|
+
> "Assign all unassigned tickets in Sprint 5 to me"
|
|
168
|
+
>
|
|
169
|
+
> "Move these 10 tickets to the QA status"
|
|
170
|
+
|
|
171
|
+
Batch operations work on up to 50 tickets at once.
|
|
172
|
+
|
|
173
|
+
### AI features
|
|
174
|
+
|
|
175
|
+
> "Find tickets similar to 'user can't reset password'"
|
|
176
|
+
>
|
|
177
|
+
> "Fix the grammar in this ticket description: ..."
|
|
178
|
+
>
|
|
179
|
+
> "Make this description clearer: ..."
|
|
180
|
+
>
|
|
181
|
+
> "Check if this title is clear enough: 'fix thing'"
|
|
182
|
+
|
|
183
|
+
### Analytics and reporting
|
|
184
|
+
|
|
185
|
+
> "Show me the team analytics for the Frontend project"
|
|
186
|
+
>
|
|
187
|
+
> "What's the average cycle time for tickets?"
|
|
188
|
+
>
|
|
189
|
+
> "Show the ticket distribution by priority and type"
|
|
190
|
+
|
|
191
|
+
### Checking usage
|
|
192
|
+
|
|
193
|
+
> "How many MCP requests have I used today?"
|
|
194
|
+
>
|
|
195
|
+
> "What's my AI usage this week?"
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## Example Workflows
|
|
200
|
+
|
|
201
|
+
### Daily standup
|
|
202
|
+
|
|
203
|
+
> "Show me my tickets, any overdue items, and what's due this week"
|
|
204
|
+
|
|
205
|
+
### Sprint planning
|
|
206
|
+
|
|
207
|
+
> "Create a release called 'Sprint 12' with target date Feb 28. Then show me the backlog so I can pick tickets to include."
|
|
208
|
+
|
|
209
|
+
### Triage new bugs
|
|
210
|
+
|
|
211
|
+
> "Show me all tickets tagged 'bug' that don't have an assignee. For each one, suggest a priority and size."
|
|
212
|
+
|
|
213
|
+
### End of sprint
|
|
214
|
+
|
|
215
|
+
> "Show me all tickets in Sprint 11. Complete the ones in the Done column, and move any incomplete ones to the backlog."
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Available Tools (125)
|
|
220
|
+
|
|
221
|
+
| Category | Count | Key Tools |
|
|
222
|
+
|----------|-------|-----------|
|
|
223
|
+
| **Tickets** | 24 | `create_ticket`, `update_ticket`, `move_ticket`, `complete_ticket`, `get_my_tickets`, `get_overdue_tickets` |
|
|
224
|
+
| **Projects** | 11 | `list_projects`, `create_project`, `get_project_stats`, `get_project_summaries` |
|
|
225
|
+
| **Releases** | 17 | `create_release`, `assign_tickets_to_release`, `mark_release_shipped`, `get_release_burndown`, `get_release_history` |
|
|
226
|
+
| **Workflow** | 8 | `list_statuses`, `get_available_transitions`, `create_status`, `create_transition` |
|
|
227
|
+
| **Tags** | 8 | `list_tags`, `create_tag`, `add_tag_to_ticket`, `set_ticket_tags` |
|
|
228
|
+
| **AI** | 8 | `polish_title`, `generate_description`, `find_similar_tickets`, `suggest_attributes` |
|
|
229
|
+
| **Organization** | 6 | `list_organizations`, `set_organization`, `list_organization_members` |
|
|
230
|
+
| **Comments** | 5 | `add_comment`, `list_comments`, `update_comment` |
|
|
231
|
+
| **Notifications** | 5 | `list_notifications`, `get_unread_count`, `mark_all_notifications_read` |
|
|
232
|
+
| **Priorities** | 5 | `list_priorities`, `create_priority`, `update_priority` |
|
|
233
|
+
| **Sizes** | 5 | `list_sizes`, `create_size`, `update_size` |
|
|
234
|
+
| **Ticket Types** | 5 | `list_ticket_types`, `create_ticket_type` |
|
|
235
|
+
| **Members** | 4 | `add_project_member`, `remove_project_member`, `update_project_member_role` |
|
|
236
|
+
| **Batch** | 3 | `batch_move_tickets`, `batch_complete_tickets`, `batch_assign_tickets` |
|
|
237
|
+
| **Analytics** | 3 | `get_member_analytics`, `get_cycle_time_analytics`, `get_distribution_analytics` |
|
|
238
|
+
| **History** | 2 | `get_ticket_history`, `get_project_activity` |
|
|
239
|
+
| **Watchers** | 2 | `get_watch_status`, `toggle_watch` |
|
|
240
|
+
| **Usage** | 2 | `get_mcp_usage`, `get_ai_usage` |
|
|
241
|
+
| **Attachments** | 1 | `list_attachments` |
|
|
242
|
+
| **Help** | 1 | `get_help` |
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## CLI Commands
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
npx @kanbodev/mcp login # Authenticate via browser
|
|
250
|
+
npx @kanbodev/mcp whoami # Check auth status
|
|
251
|
+
npx @kanbodev/mcp logout # Remove credentials
|
|
252
|
+
npx @kanbodev/mcp help # Show help
|
|
253
|
+
npx @kanbodev/mcp version # Show version
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
## License
|
|
257
|
+
|
|
258
|
+
MIT
|