wolfpack-mcp 1.0.98 → 1.0.99
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 +14 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -437,6 +437,10 @@ const UpdateIssueSchema = z.object({
|
|
|
437
437
|
steps_to_reproduce: z.string().optional().describe('Steps to reproduce'),
|
|
438
438
|
expected_behavior: z.string().optional().describe('Expected behavior'),
|
|
439
439
|
actual_behavior: z.string().optional().describe('Actual behavior'),
|
|
440
|
+
tags: z
|
|
441
|
+
.array(z.string())
|
|
442
|
+
.optional()
|
|
443
|
+
.describe('Tag names to apply (replaces existing tags). Use list_tags to see available tags.'),
|
|
440
444
|
project_slug: z
|
|
441
445
|
.string()
|
|
442
446
|
.optional()
|
|
@@ -1637,6 +1641,10 @@ class WolfpackMCPServer {
|
|
|
1637
1641
|
{
|
|
1638
1642
|
name: 'update_issue',
|
|
1639
1643
|
description: 'Update an existing issue. Requires mcp:issues:update permission. ' +
|
|
1644
|
+
'TAGS: pass `tags` (names from list_tags) to replace the whole tag set; an ' +
|
|
1645
|
+
'empty array clears it. Tagging an issue that is not assigned to you needs ' +
|
|
1646
|
+
'mcp:issues:tag_all, and that scope allows a tags-only update — send any other ' +
|
|
1647
|
+
'field alongside and the usual assignment rule applies. ' +
|
|
1640
1648
|
CONTENT_LINKING_HELP,
|
|
1641
1649
|
inputSchema: {
|
|
1642
1650
|
type: 'object',
|
|
@@ -1676,6 +1684,11 @@ class WolfpackMCPServer {
|
|
|
1676
1684
|
steps_to_reproduce: { type: 'string', description: 'Steps to reproduce' },
|
|
1677
1685
|
expected_behavior: { type: 'string', description: 'Expected behavior' },
|
|
1678
1686
|
actual_behavior: { type: 'string', description: 'Actual behavior' },
|
|
1687
|
+
tags: {
|
|
1688
|
+
type: 'array',
|
|
1689
|
+
items: { type: 'string' },
|
|
1690
|
+
description: 'Tag names to apply (replaces existing tags). Use list_tags to see available tags.',
|
|
1691
|
+
},
|
|
1679
1692
|
project_slug: {
|
|
1680
1693
|
type: 'string',
|
|
1681
1694
|
description: 'Project slug (required for multi-project users, use list_projects to get slugs)',
|
|
@@ -3086,6 +3099,7 @@ class WolfpackMCPServer {
|
|
|
3086
3099
|
stepsToReproduce: parsed.steps_to_reproduce,
|
|
3087
3100
|
expectedBehavior: parsed.expected_behavior,
|
|
3088
3101
|
actualBehavior: parsed.actual_behavior,
|
|
3102
|
+
tags: parsed.tags,
|
|
3089
3103
|
}, teamSlug);
|
|
3090
3104
|
return {
|
|
3091
3105
|
content: [
|