wolfpack-mcp 1.0.71 → 1.0.72

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -184,7 +184,8 @@ const UpdateWorkItemSchema = z.object({
184
184
  .string()
185
185
  .nullable()
186
186
  .optional()
187
- .describe('Comment explaining closure/completion'),
187
+ .describe('ONLY when closing: comment explaining why the item is closed, provided together with status "closed". ' +
188
+ 'Not for progress or completion notes — use create_work_item_comment for those.'),
188
189
  project_slug: z
189
190
  .string()
190
191
  .optional()
@@ -872,7 +873,8 @@ class WolfpackMCPServer {
872
873
  'radar_item_id (initiative), category_id, priority (0-4), size (S/M/L), work_pool_id, tags, and closing_comment. ' +
873
874
  'STATUS WORKFLOW: "pending" (backlog) → "new" (to do) → "doing" (in progress) → "review" (work done) → "ready" (awaiting deployment) → "completed" (deployed). ' +
874
875
  'Use "blocked" when work cannot proceed. For "pending" items use pull_work_item first. ' +
875
- 'When moving to "review", add a completion comment. When moving to "blocked", add a comment explaining the blocker.',
876
+ 'When moving to "review", add a completion comment via create_work_item_comment. When moving to "blocked", add a comment explaining the blocker. ' +
877
+ 'closing_comment is only accepted together with status "closed" — never use it for progress or completion notes.',
876
878
  inputSchema: {
877
879
  type: 'object',
878
880
  properties: {
@@ -947,7 +949,8 @@ class WolfpackMCPServer {
947
949
  },
948
950
  closing_comment: {
949
951
  type: ['string', 'null'],
950
- description: 'Comment explaining closure/completion',
952
+ description: 'ONLY when closing: comment explaining why the item is closed, provided together with status "closed". ' +
953
+ 'Not for progress or completion notes — use create_work_item_comment for those.',
951
954
  },
952
955
  project_slug: {
953
956
  type: 'string',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",