wolfpack-mcp 1.0.25 → 1.0.26
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/dist/index.js +11 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -304,12 +304,15 @@ class WolfpackMCPServer {
|
|
|
304
304
|
// Work Item tools
|
|
305
305
|
{
|
|
306
306
|
name: 'list_work_items',
|
|
307
|
-
description: 'List work items (tasks/tickets). By default lists ALL items in the team, sorted by most recently updated. ' +
|
|
307
|
+
description: 'List work items (tasks/tickets) on the Kanban board or backlog. By default lists ALL items in the team, sorted by most recently updated. ' +
|
|
308
308
|
'Use assigned_to_id="me" to filter to only your assigned items. ' +
|
|
309
|
-
'TERMINOLOGY:
|
|
309
|
+
'TERMINOLOGY: "board" and "kanban" are synonymous - both refer to the Kanban board of work items. ' +
|
|
310
|
+
'The board has columns: "new" (to do), "doing" (in progress), "review" (pending review), "ready" (code done, awaiting deployment), "blocked", "completed" (deployed). ' +
|
|
310
311
|
'The "backlog" or "pending" status represents items not yet on the board. ' +
|
|
311
312
|
'By default, completed/closed items are excluded - use status="all" to include them. ' +
|
|
312
|
-
'
|
|
313
|
+
'IMPORTANT: Work items are NOT the same as issues. Work items live on the Kanban board/backlog. ' +
|
|
314
|
+
'If a user mentions "bugs" in the context of the board/kanban/backlog, they mean work items categorised as bug fixes - use this tool, not list_issues. ' +
|
|
315
|
+
'Use when user asks about "the board", "kanban", "work items", "tasks", "my work" (with assigned_to_id="me"), or "backlog".',
|
|
313
316
|
inputSchema: {
|
|
314
317
|
type: 'object',
|
|
315
318
|
properties: {
|
|
@@ -501,7 +504,11 @@ class WolfpackMCPServer {
|
|
|
501
504
|
// Issue tools
|
|
502
505
|
{
|
|
503
506
|
name: 'list_issues',
|
|
504
|
-
description: 'List issues
|
|
507
|
+
description: 'List issues from the Issue Tracker. Issues are a SEPARATE system from work items on the Kanban board. ' +
|
|
508
|
+
'Issues track bugs, feature requests, and other reports that may or may not have associated work items. ' +
|
|
509
|
+
'IMPORTANT: If the user asks about "bugs" or "tasks" in the context of the "board", "kanban", or "backlog", use list_work_items instead - those are work items, not issues. ' +
|
|
510
|
+
'Only use this tool when the user specifically asks about "issues", the "issue tracker", or is clearly referring to the issue tracking system. ' +
|
|
511
|
+
'Can filter by status, severity, and type.',
|
|
505
512
|
inputSchema: {
|
|
506
513
|
type: 'object',
|
|
507
514
|
properties: {
|