wolfpack-mcp 1.0.74 → 1.0.76

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 CHANGED
@@ -1612,7 +1612,7 @@ class WolfpackMCPServer {
1612
1612
  },
1613
1613
  {
1614
1614
  name: 'delete_work_item_comment',
1615
- description: 'Delete a comment from a work item. Only the comment author can delete their own comments. ' +
1615
+ description: 'Delete a comment from a work item. The comment author or a team admin can delete a comment. ' +
1616
1616
  'Requires mcp:comments:delete permission. Use list_work_item_comments to get comment IDs.',
1617
1617
  inputSchema: {
1618
1618
  type: 'object',
@@ -1629,7 +1629,7 @@ class WolfpackMCPServer {
1629
1629
  },
1630
1630
  {
1631
1631
  name: 'delete_issue_comment',
1632
- description: 'Delete a comment from an issue. Only the comment author can delete their own comments. ' +
1632
+ description: 'Delete a comment from an issue. The comment author or a team admin can delete a comment. ' +
1633
1633
  'Requires mcp:comments:delete permission. Use list_issue_comments to get comment IDs.',
1634
1634
  inputSchema: {
1635
1635
  type: 'object',
@@ -28,6 +28,11 @@ const FORM_FIELD_ITEM_SCHEMA = {
28
28
  },
29
29
  required: ['name', 'label', 'type', 'required'],
30
30
  };
31
+ const DEFINITION_DESCRIPTION = 'Workflow definition: { nodes: [{id, type, position: {x, y}, data: {...}}], edges: [{id, source, target}] }. ' +
32
+ 'An activity node needs data.activityType (task, createWorkItem, sendNotification, httpRequest, createCase, ' +
33
+ 'setVariable, createPage, createJournalEntry, llmPrompt, jsonata, agentTask, runContainer), data.label, and ' +
34
+ "data.config holding that type's settings — the step body belongs in data.config.description, not data.description. " +
35
+ 'Use activityType "task" for a step a person just reads and ticks off.';
31
36
  export const PROCEDURE_TOOLS = [
32
37
  {
33
38
  name: 'list_procedures',
@@ -85,7 +90,7 @@ export const PROCEDURE_TOOLS = [
85
90
  description: { type: 'string', description: 'Short description' },
86
91
  definition: {
87
92
  type: 'object',
88
- description: 'Workflow definition: { nodes: [{id, type, position: {x, y}, data: {...}}], edges: [{id, source, target}] }',
93
+ description: DEFINITION_DESCRIPTION,
89
94
  },
90
95
  form_definition: {
91
96
  type: ['array', 'null'],
@@ -130,7 +135,7 @@ export const PROCEDURE_TOOLS = [
130
135
  },
131
136
  definition: {
132
137
  type: 'object',
133
- description: 'Updated workflow definition: { nodes: [...], edges: [...] }. Changes increment version.',
138
+ description: `Updated definition changes increment version. ${DEFINITION_DESCRIPTION}`,
134
139
  },
135
140
  form_definition: {
136
141
  type: ['array', 'null'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",