@vibescope/mcp-server 0.4.7 → 0.4.8

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.
@@ -340,6 +340,12 @@ export const TOOL_CATEGORIES = {
340
340
  { name: 'update_mcp_server', brief: 'Self-update the MCP server' },
341
341
  ],
342
342
  },
343
+ persona_templates: {
344
+ description: 'Persona templates — behavioral archetypes that shape agent behavior',
345
+ tools: [
346
+ { name: 'get_persona_templates', brief: 'List available persona templates for a project' },
347
+ ],
348
+ },
343
349
  features: {
344
350
  description: 'Feature specs — flesh out ideas into full specs before breaking into tasks',
345
351
  tools: [
@@ -1300,6 +1300,17 @@ Read recent project chat messages to stay informed about project communication.
1300
1300
  - count: Number of messages returned
1301
1301
 
1302
1302
  **Example:** get_project_messages(project_id: "123e4567-e89b-12d3-a456-426614174000", limit: 10)`,
1303
+ post_progress: `# post_progress
1304
+ Post a structured progress update to the project chat. Use at key milestones: starting a task, creating a PR, hitting a blocker, or completing work.
1305
+
1306
+ **Parameters:**
1307
+ - project_id (required): Project UUID
1308
+ - message (required): Progress update message (supports markdown)
1309
+ - type (optional): Update type — info (general), milestone (key achievement), blocker (blocking issue), question (asking for input). Default: info
1310
+
1311
+ **Returns:** Confirmation with message_id and timestamp.
1312
+
1313
+ **Example:** post_progress(project_id: "123e4567-e89b-12d3-a456-426614174000", message: "PR #42 created for auth feature", type: "milestone")`,
1303
1314
  // Version management tools
1304
1315
  check_mcp_version: `# check_mcp_version
1305
1316
  Check for available MCP server updates and version information.
@@ -1331,6 +1342,17 @@ Self-update the MCP server to the latest available version.
1331
1342
  **Example:** update_mcp_server()
1332
1343
 
1333
1344
  **Note:** This operation may temporarily disconnect active sessions during restart.`,
1345
+ // Persona template tools
1346
+ get_persona_templates: `# get_persona_templates
1347
+ List available persona templates for a project. Returns both global defaults and project-specific templates.
1348
+
1349
+ **Parameters:**
1350
+ - project_id (required): Project UUID
1351
+
1352
+ **Returns:**
1353
+ - templates: Array of persona templates with id, name, description, focus_areas, icon, is_default, scope (global/project)
1354
+
1355
+ **Example:** get_persona_templates(project_id: "123e4567-e89b-12d3-a456-426614174000")`,
1334
1356
  add_feature: `# add_feature
1335
1357
  Create a draft feature spec. Features sit between ideas (quick thoughts) and tasks (actionable work).
1336
1358
 
@@ -32,6 +32,7 @@ import { connectorTools } from './connectors.js';
32
32
  import { cloudAgentTools } from './cloud-agents.js';
33
33
  import { versionTools } from './version.js';
34
34
  import { featureTools } from './features.js';
35
+ import { personaTemplateTools } from './persona-templates.js';
35
36
  /**
36
37
  * All MCP tool definitions combined
37
38
  */
@@ -71,5 +72,6 @@ export declare const toolCategories: {
71
72
  readonly cloudAgents: string[];
72
73
  readonly version: string[];
73
74
  readonly features: string[];
75
+ readonly personaTemplates: string[];
74
76
  };
75
- export { sessionTools, costTools, discoveryTools, worktreeTools, projectTools, taskTools, progressTools, blockerTools, decisionTools, ideaTools, findingTools, validationTools, deploymentTools, fallbackTools, requestTools, milestoneTools, bodiesOfWorkTools, organizationTools, fileCheckoutTools, roleTools, sprintTools, gitIssueTools, connectorTools, cloudAgentTools, versionTools, featureTools, };
77
+ export { sessionTools, costTools, discoveryTools, worktreeTools, projectTools, taskTools, progressTools, blockerTools, decisionTools, ideaTools, findingTools, validationTools, deploymentTools, fallbackTools, requestTools, milestoneTools, bodiesOfWorkTools, organizationTools, fileCheckoutTools, roleTools, sprintTools, gitIssueTools, connectorTools, cloudAgentTools, versionTools, featureTools, personaTemplateTools, };
@@ -32,6 +32,7 @@ import { cloudAgentTools } from './cloud-agents.js';
32
32
  import { versionTools } from './version.js';
33
33
  import { chatTools } from './chat.js';
34
34
  import { featureTools } from './features.js';
35
+ import { personaTemplateTools } from './persona-templates.js';
35
36
  /**
36
37
  * All MCP tool definitions combined
37
38
  */
@@ -63,6 +64,7 @@ export const tools = [
63
64
  ...versionTools,
64
65
  ...chatTools,
65
66
  ...featureTools,
67
+ ...personaTemplateTools,
66
68
  ];
67
69
  /**
68
70
  * Build the complete tool list from all domain modules
@@ -101,6 +103,7 @@ export const toolCategories = {
101
103
  cloudAgents: cloudAgentTools.map((t) => t.name),
102
104
  version: versionTools.map((t) => t.name),
103
105
  features: featureTools.map((t) => t.name),
106
+ personaTemplates: personaTemplateTools.map((t) => t.name),
104
107
  };
105
108
  // Re-export domain tools for selective imports
106
- export { sessionTools, costTools, discoveryTools, worktreeTools, projectTools, taskTools, progressTools, blockerTools, decisionTools, ideaTools, findingTools, validationTools, deploymentTools, fallbackTools, requestTools, milestoneTools, bodiesOfWorkTools, organizationTools, fileCheckoutTools, roleTools, sprintTools, gitIssueTools, connectorTools, cloudAgentTools, versionTools, featureTools, };
109
+ export { sessionTools, costTools, discoveryTools, worktreeTools, projectTools, taskTools, progressTools, blockerTools, decisionTools, ideaTools, findingTools, validationTools, deploymentTools, fallbackTools, requestTools, milestoneTools, bodiesOfWorkTools, organizationTools, fileCheckoutTools, roleTools, sprintTools, gitIssueTools, connectorTools, cloudAgentTools, versionTools, featureTools, personaTemplateTools, };
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Persona Template Tool Definitions
3
+ *
4
+ * Tools for managing persona templates:
5
+ * - get_persona_templates
6
+ */
7
+ import type { Tool } from './types.js';
8
+ export declare const personaTemplateTools: Tool[];
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Persona Template Tool Definitions
3
+ *
4
+ * Tools for managing persona templates:
5
+ * - get_persona_templates
6
+ */
7
+ export const personaTemplateTools = [
8
+ {
9
+ name: 'get_persona_templates',
10
+ description: 'List available persona templates for a project. Returns both global defaults and project-specific templates. Persona templates define behavioral archetypes (e.g., Code Reviewer, QA Engineer) that shape agent behavior.',
11
+ inputSchema: {
12
+ type: 'object',
13
+ properties: {
14
+ project_id: {
15
+ type: 'string',
16
+ description: 'Project UUID',
17
+ },
18
+ },
19
+ required: ['project_id'],
20
+ },
21
+ },
22
+ ];
@@ -222,6 +222,10 @@ WHEN TO USE: If the user gives you work directly (e.g., "implement feature X", "
222
222
  enum: ['haiku', 'sonnet', 'opus'],
223
223
  description: 'Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning)',
224
224
  },
225
+ assigned_agent_name: {
226
+ type: 'string',
227
+ description: 'Pre-assign this task to a specific agent by persona name. Only that agent will pick it up via get_next_task.',
228
+ },
225
229
  },
226
230
  required: ['project_id', 'title'],
227
231
  },
@@ -292,6 +296,10 @@ For projects without git branching (trunk-based or none), use skip_worktree_requ
292
296
  enum: ['haiku', 'sonnet', 'opus'],
293
297
  description: 'Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning)',
294
298
  },
299
+ assigned_agent_name: {
300
+ type: ['string', 'null'],
301
+ description: 'Pre-assign this task to a specific agent by persona name. Set to null to unassign. Only the assigned agent will pick it up via get_next_task.',
302
+ },
295
303
  skip_worktree_requirement: {
296
304
  type: 'boolean',
297
305
  description: 'Skip git_branch requirement for projects without branching workflows (trunk-based or none). Default: false',
package/docs/TOOLS.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  > Auto-generated from tool definitions. Do not edit manually.
4
4
  >
5
- > Generated: 2026-03-04
5
+ > Generated: 2026-03-05
6
6
  >
7
- > Total tools: 167
7
+ > Total tools: 168
8
8
 
9
9
  ## Table of Contents
10
10
 
@@ -36,6 +36,7 @@
36
36
  - [cloud_agents](#cloud-agents) - Cloud agent management and cleanup (3 tools)
37
37
  - [chat](#chat) - Project-wide chat channel for agent and user communication (3 tools)
38
38
  - [version](#version) - MCP server version management and updates (2 tools)
39
+ - [persona_templates](#persona-templates) - Persona templates — behavioral archetypes that shape agent behavior (1 tools)
39
40
  - [features](#features) - Feature specs — flesh out ideas into full specs before breaking into tasks (6 tools)
40
41
 
41
42
  ## session
@@ -380,6 +381,7 @@ WHEN TO USE: If the user gives you work directly (e.g., "implement feature X", "
380
381
  | `estimated_minutes` | `number` | No | Estimated time to complete in minutes (min: 1) |
381
382
  | `blocking` | `boolean` | No | When true, this task blocks all other work until complete (used for deployment finalization) |
382
383
  | `model_capability` | `"haiku" | "sonnet" | "opus"` | No | Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning) |
384
+ | `assigned_agent_name` | `string` | No | Pre-assign this task to a specific agent by persona name. Only that agent will pick it up via get_next_task. |
383
385
 
384
386
  ---
385
387
 
@@ -417,6 +419,7 @@ For projects without git branching (trunk-based or none), use skip_worktree_requ
417
419
  | `worktree_path` | `string` | No | Git worktree path for this task (e.g., "../project-task-abc123"). Store this for cleanup tracking across sessions. |
418
420
  | `worktree_hostname` | `string` | No | Machine hostname where worktree was created (os.hostname()). Required with worktree_path to enable machine-aware cleanup. |
419
421
  | `model_capability` | `"haiku" | "sonnet" | "opus"` | No | Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning) |
422
+ | `assigned_agent_name` | `string,null` | No | Pre-assign this task to a specific agent by persona name. Set to null to unassign. Only the assigned agent will pick it up via get_next_task. |
420
423
  | `skip_worktree_requirement` | `boolean` | No | Skip git_branch requirement for projects without branching workflows (trunk-based or none). Default: false |
421
424
  | `session_id` | `string` | No | Session ID from start_work_session. Required for cloud agents using mcporter (session context is not preserved between calls). Links the task to your agent on the dashboard. |
422
425
 
@@ -2574,6 +2577,22 @@ Update the Vibescope MCP server to the latest version. Runs npm install to fetch
2574
2577
 
2575
2578
  ---
2576
2579
 
2580
+ ## persona_templates
2581
+
2582
+ *Persona templates — behavioral archetypes that shape agent behavior*
2583
+
2584
+ ### get_persona_templates
2585
+
2586
+ List available persona templates for a project. Returns both global defaults and project-specific templates. Persona templates define behavioral archetypes (e.g., Code Reviewer, QA Engineer) that shape agent behavior.
2587
+
2588
+ **Parameters:**
2589
+
2590
+ | Parameter | Type | Required | Description |
2591
+ |-----------|------|----------|-------------|
2592
+ | `project_id` | `string` | Yes | Project UUID |
2593
+
2594
+ ---
2595
+
2577
2596
  ## features
2578
2597
 
2579
2598
  *Feature specs — flesh out ideas into full specs before breaking into tasks*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibescope/mcp-server",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "description": "MCP server for Vibescope - AI project tracking tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -348,6 +348,12 @@ export const TOOL_CATEGORIES: Record<string, { description: string; tools: Array
348
348
  { name: 'update_mcp_server', brief: 'Self-update the MCP server' },
349
349
  ],
350
350
  },
351
+ persona_templates: {
352
+ description: 'Persona templates — behavioral archetypes that shape agent behavior',
353
+ tools: [
354
+ { name: 'get_persona_templates', brief: 'List available persona templates for a project' },
355
+ ],
356
+ },
351
357
  features: {
352
358
  description: 'Feature specs — flesh out ideas into full specs before breaking into tasks',
353
359
  tools: [
@@ -1464,6 +1464,18 @@ Read recent project chat messages to stay informed about project communication.
1464
1464
 
1465
1465
  **Example:** get_project_messages(project_id: "123e4567-e89b-12d3-a456-426614174000", limit: 10)`,
1466
1466
 
1467
+ post_progress: `# post_progress
1468
+ Post a structured progress update to the project chat. Use at key milestones: starting a task, creating a PR, hitting a blocker, or completing work.
1469
+
1470
+ **Parameters:**
1471
+ - project_id (required): Project UUID
1472
+ - message (required): Progress update message (supports markdown)
1473
+ - type (optional): Update type — info (general), milestone (key achievement), blocker (blocking issue), question (asking for input). Default: info
1474
+
1475
+ **Returns:** Confirmation with message_id and timestamp.
1476
+
1477
+ **Example:** post_progress(project_id: "123e4567-e89b-12d3-a456-426614174000", message: "PR #42 created for auth feature", type: "milestone")`,
1478
+
1467
1479
  // Version management tools
1468
1480
  check_mcp_version: `# check_mcp_version
1469
1481
  Check for available MCP server updates and version information.
@@ -1497,6 +1509,18 @@ Self-update the MCP server to the latest available version.
1497
1509
 
1498
1510
  **Note:** This operation may temporarily disconnect active sessions during restart.`,
1499
1511
 
1512
+ // Persona template tools
1513
+ get_persona_templates: `# get_persona_templates
1514
+ List available persona templates for a project. Returns both global defaults and project-specific templates.
1515
+
1516
+ **Parameters:**
1517
+ - project_id (required): Project UUID
1518
+
1519
+ **Returns:**
1520
+ - templates: Array of persona templates with id, name, description, focus_areas, icon, is_default, scope (global/project)
1521
+
1522
+ **Example:** get_persona_templates(project_id: "123e4567-e89b-12d3-a456-426614174000")`,
1523
+
1500
1524
  add_feature: `# add_feature
1501
1525
  Create a draft feature spec. Features sit between ideas (quick thoughts) and tasks (actionable work).
1502
1526
 
@@ -36,6 +36,7 @@ import { cloudAgentTools } from './cloud-agents.js';
36
36
  import { versionTools } from './version.js';
37
37
  import { chatTools } from './chat.js';
38
38
  import { featureTools } from './features.js';
39
+ import { personaTemplateTools } from './persona-templates.js';
39
40
 
40
41
  /**
41
42
  * All MCP tool definitions combined
@@ -68,6 +69,7 @@ export const tools: Tool[] = [
68
69
  ...versionTools,
69
70
  ...chatTools,
70
71
  ...featureTools,
72
+ ...personaTemplateTools,
71
73
  ];
72
74
 
73
75
  /**
@@ -108,6 +110,7 @@ export const toolCategories = {
108
110
  cloudAgents: cloudAgentTools.map((t) => t.name),
109
111
  version: versionTools.map((t) => t.name),
110
112
  features: featureTools.map((t) => t.name),
113
+ personaTemplates: personaTemplateTools.map((t) => t.name),
111
114
  } as const;
112
115
 
113
116
  // Re-export domain tools for selective imports
@@ -138,4 +141,5 @@ export {
138
141
  cloudAgentTools,
139
142
  versionTools,
140
143
  featureTools,
144
+ personaTemplateTools,
141
145
  };
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Persona Template Tool Definitions
3
+ *
4
+ * Tools for managing persona templates:
5
+ * - get_persona_templates
6
+ */
7
+
8
+ import type { Tool } from './types.js';
9
+
10
+ export const personaTemplateTools: Tool[] = [
11
+ {
12
+ name: 'get_persona_templates',
13
+ description: 'List available persona templates for a project. Returns both global defaults and project-specific templates. Persona templates define behavioral archetypes (e.g., Code Reviewer, QA Engineer) that shape agent behavior.',
14
+ inputSchema: {
15
+ type: 'object',
16
+ properties: {
17
+ project_id: {
18
+ type: 'string',
19
+ description: 'Project UUID',
20
+ },
21
+ },
22
+ required: ['project_id'],
23
+ },
24
+ },
25
+ ];
@@ -225,6 +225,10 @@ WHEN TO USE: If the user gives you work directly (e.g., "implement feature X", "
225
225
  enum: ['haiku', 'sonnet', 'opus'],
226
226
  description: 'Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning)',
227
227
  },
228
+ assigned_agent_name: {
229
+ type: 'string',
230
+ description: 'Pre-assign this task to a specific agent by persona name. Only that agent will pick it up via get_next_task.',
231
+ },
228
232
  },
229
233
  required: ['project_id', 'title'],
230
234
  },
@@ -295,6 +299,10 @@ For projects without git branching (trunk-based or none), use skip_worktree_requ
295
299
  enum: ['haiku', 'sonnet', 'opus'],
296
300
  description: 'Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning)',
297
301
  },
302
+ assigned_agent_name: {
303
+ type: ['string', 'null'],
304
+ description: 'Pre-assign this task to a specific agent by persona name. Set to null to unassign. Only the assigned agent will pick it up via get_next_task.',
305
+ },
298
306
  skip_worktree_requirement: {
299
307
  type: 'boolean',
300
308
  description: 'Skip git_branch requirement for projects without branching workflows (trunk-based or none). Default: false',