wolfpack-mcp 1.0.14 → 1.0.16

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 (3) hide show
  1. package/README.md +12 -0
  2. package/dist/index.js +19 -6
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -93,6 +93,15 @@ To pre-select a default team, add to your config:
93
93
  }
94
94
  ```
95
95
 
96
+ ## Project Focus
97
+
98
+ The MCP server is designed to work within **one project at a time**:
99
+
100
+ - The agent will identify which project you're working in before taking actions
101
+ - Once a project is identified, all operations stay within that project
102
+ - The agent will not perform bulk actions across multiple projects
103
+ - To switch projects, explicitly tell Claude (e.g., "switch to the Platform project")
104
+
96
105
  ## API Key Permissions
97
106
 
98
107
  When creating your API key, select the permissions you need:
@@ -137,6 +146,9 @@ Verify [wolfpacks.work](https://wolfpacks.work) is accessible from your network.
137
146
  - Permissions are configurable per key—grant only what you need
138
147
  - Revoke keys anytime from Account Settings
139
148
 
149
+ For additional security, you can **restrict API keys to specific projects** when creating them in Account Settings. This
150
+ ensures the key can only access the projects you select, regardless of your team memberships.
151
+
140
152
  ## Available Tools Reference
141
153
 
142
154
  <details>
package/dist/index.js CHANGED
@@ -245,7 +245,14 @@ class WolfpackMCPServer {
245
245
  // Team tools
246
246
  {
247
247
  name: 'list_teams',
248
- description: 'List all teams you have access to. IMPORTANT: Call this first if you need to know the team_id for other operations. Returns team IDs, slugs, and names. Single-team users have their team auto-selected; multi-team users must specify team_id in other tool calls.',
248
+ description: 'List all teams (projects) you have access to. ' +
249
+ 'IMPORTANT - PROJECT FOCUS RULES: ' +
250
+ '1) Call this FIRST to identify which project you are working in. ' +
251
+ '2) Once you identify a project, STAY WITHIN that project for all operations unless the user explicitly asks to switch projects. ' +
252
+ '3) NEVER perform bulk actions across multiple projects - always work in one project at a time. ' +
253
+ '4) If the user mentions a specific project, use that project for all subsequent operations. ' +
254
+ '5) If unclear which project to use, ASK the user before proceeding. ' +
255
+ 'Returns team IDs, slugs, and names. Single-team users have their team auto-selected; multi-team users must specify team_id in other tool calls.',
249
256
  inputSchema: {
250
257
  type: 'object',
251
258
  properties: {},
@@ -311,7 +318,8 @@ class WolfpackMCPServer {
311
318
  description: 'Get a specific work item/task by ID or reference number. Returns full details including description (markdown notes). ' +
312
319
  'Call this before updating to see current content. ' +
313
320
  'WORKFLOW: When asked to work on an item, check its status and follow the required state transitions ' +
314
- '(pending→pull first, new→doing, blocked/ready/completed/closed→new→doing, then review when done).',
321
+ '(pending→pull first, new→doing, blocked/ready/completed/closed→new→doing, then review when done). ' +
322
+ 'PLANNING: Check if the description contains a plan (markdown checklist). If not, APPEND one using update_work_progress - preserve all original description text and add your plan below a "---" separator.',
315
323
  inputSchema: {
316
324
  type: 'object',
317
325
  properties: {
@@ -329,7 +337,9 @@ class WolfpackMCPServer {
329
337
  },
330
338
  {
331
339
  name: 'update_work_progress',
332
- description: 'Update work item description/notes with your progress. WORKFLOW: 1) get_work_item to read current notes 2) Modify the markdown description with new findings/progress 3) Call this with the complete updated description. The full description replaces the existing one.',
340
+ description: 'Update work item description/notes with your progress. WORKFLOW: 1) get_work_item to read current notes 2) Modify the markdown description with new findings/progress 3) Call this with the complete updated description. The full description replaces the existing one. ' +
341
+ 'CRITICAL: NEVER overwrite or remove the original description text. Preserve all existing content exactly as-is. Append your plan below a "---" separator. You may only modify content you previously added (your plan section). ' +
342
+ 'BEST PRACTICE: Append a plan with markdown checkboxes (- [ ] task). Check off completed tasks (- [x] task) as you progress. Include sections for: Plan (checklist), Approach (strategy), and Notes (discoveries/decisions).',
333
343
  inputSchema: {
334
344
  type: 'object',
335
345
  properties: {
@@ -349,8 +359,8 @@ class WolfpackMCPServer {
349
359
  '1) For "new" items: move to "doing" when starting work. ' +
350
360
  '2) For "pending" (backlog) items: use pull_work_item first (claims and sets to "new"), then move to "doing". ' +
351
361
  '3) For items in "blocked", "ready", "completed", or "closed": move to "new" first, then to "doing". ' +
352
- '4) When work is complete: move to "review" (NOT "completed" - that is only for deployed work). ' +
353
- '5) If work cannot be done: move to "blocked" and add a comment explaining why. ' +
362
+ '4) When work is complete: move to "review" (NOT "completed" - that is only for deployed work) and add a completion comment summarizing what was done. ' +
363
+ '5) If work cannot be done: move to "blocked" and add a detailed comment explaining the blocker, what was attempted, and what is needed to unblock. ' +
354
364
  'Statuses: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done, pending review), ' +
355
365
  '"ready" (reviewed, awaiting deployment), "blocked", "completed" (deployed).',
356
366
  inputSchema: {
@@ -700,7 +710,10 @@ class WolfpackMCPServer {
700
710
  {
701
711
  name: 'create_work_item_comment',
702
712
  description: 'Add a comment to a work item. Requires mcp:comments:create permission. ' +
703
- 'REQUIRED: When moving an item to "blocked" status, add a comment explaining why the work cannot be done.',
713
+ 'USE COMMENTS FOR: 1) Blocking reasons when moving to "blocked" (what failed, what was tried, what is needed). ' +
714
+ '2) Completion summaries when moving to "review" (what was done, files changed, testing notes). ' +
715
+ '3) Important observations or decisions that should be visible in the activity history. ' +
716
+ 'USE DESCRIPTION (update_work_progress) FOR: Plans, checklists, and progress tracking that need to be updated over time.',
704
717
  inputSchema: {
705
718
  type: 'object',
706
719
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",