@vibescope/mcp-server 0.2.7 → 0.2.9
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/api-client.d.ts +5 -5
- package/dist/handlers/roles.js +1 -8
- package/dist/handlers/session.js +23 -32
- package/dist/handlers/validation.js +27 -14
- package/dist/index.js +3 -3
- package/dist/setup.js +52 -22
- package/dist/templates/help-content.d.ts +24 -0
- package/dist/templates/help-content.js +1650 -0
- package/dist/tools.js +6 -13
- package/package.json +51 -52
- package/src/api-client.ts +5 -5
- package/src/handlers/roles.test.ts +5 -3
- package/src/handlers/roles.ts +1 -8
- package/src/handlers/session.ts +29 -37
- package/src/handlers/validation.ts +30 -14
- package/src/index.ts +3 -3
- package/src/setup.ts +54 -21
- package/src/templates/help-content.ts +1673 -0
- package/src/tools.ts +6 -13
package/src/tools.ts
CHANGED
|
@@ -29,13 +29,11 @@ Use mode:'full' for complete context, mode:'lite' (default) for minimal tokens.`
|
|
|
29
29
|
},
|
|
30
30
|
model: {
|
|
31
31
|
type: 'string',
|
|
32
|
-
|
|
33
|
-
description: 'Claude model being used (for accurate cost tracking). E.g., "opus", "sonnet", "haiku".',
|
|
32
|
+
description: 'Model being used for cost tracking. E.g., "opus", "sonnet", "haiku" for Claude, "gemini" for Gemini, "gpt-4o" for OpenAI.',
|
|
34
33
|
},
|
|
35
34
|
role: {
|
|
36
35
|
type: 'string',
|
|
37
|
-
|
|
38
|
-
description: 'Agent role: developer (general work, default), validator (task validation), deployer (deployments), reviewer (code review), maintainer (housekeeping)',
|
|
36
|
+
description: 'Agent role (e.g., "developer", "validator", "deployer", "reviewer", "maintainer"). Custom roles accepted.',
|
|
39
37
|
},
|
|
40
38
|
hostname: {
|
|
41
39
|
type: 'string',
|
|
@@ -43,8 +41,7 @@ Use mode:'full' for complete context, mode:'lite' (default) for minimal tokens.`
|
|
|
43
41
|
},
|
|
44
42
|
agent_type: {
|
|
45
43
|
type: 'string',
|
|
46
|
-
|
|
47
|
-
description: 'Agent type for onboarding. When a new agent type connects to an existing project, setup instructions are returned.',
|
|
44
|
+
description: 'Agent type (e.g., "claude", "gemini", "cursor", "windsurf"). Custom agent types accepted.',
|
|
48
45
|
},
|
|
49
46
|
},
|
|
50
47
|
},
|
|
@@ -63,8 +60,7 @@ This marks your agent type as fully onboarded to the project, so you won't recei
|
|
|
63
60
|
},
|
|
64
61
|
agent_type: {
|
|
65
62
|
type: 'string',
|
|
66
|
-
|
|
67
|
-
description: 'Agent type that completed setup',
|
|
63
|
+
description: 'Agent type that completed setup (e.g., "claude", "gemini", "cursor"). Custom agent types accepted.',
|
|
68
64
|
},
|
|
69
65
|
},
|
|
70
66
|
required: ['project_id', 'agent_type'],
|
|
@@ -113,7 +109,6 @@ The Claude API response includes 'usage.input_tokens' and 'usage.output_tokens'
|
|
|
113
109
|
},
|
|
114
110
|
model: {
|
|
115
111
|
type: 'string',
|
|
116
|
-
enum: ['opus', 'sonnet', 'haiku'],
|
|
117
112
|
description: 'Model used for this API call (optional, uses session model if not provided)',
|
|
118
113
|
},
|
|
119
114
|
},
|
|
@@ -2908,8 +2903,7 @@ Only returns tasks where all dependencies are completed.`,
|
|
|
2908
2903
|
},
|
|
2909
2904
|
role: {
|
|
2910
2905
|
type: 'string',
|
|
2911
|
-
|
|
2912
|
-
description: 'Role to configure',
|
|
2906
|
+
description: 'Role to configure (e.g., "developer", "validator", "deployer"). Custom roles accepted.',
|
|
2913
2907
|
},
|
|
2914
2908
|
enabled: {
|
|
2915
2909
|
type: 'boolean',
|
|
@@ -2953,8 +2947,7 @@ Only returns tasks where all dependencies are completed.`,
|
|
|
2953
2947
|
properties: {
|
|
2954
2948
|
role: {
|
|
2955
2949
|
type: 'string',
|
|
2956
|
-
|
|
2957
|
-
description: 'Role to assign to this session',
|
|
2950
|
+
description: 'Role to assign to this session (e.g., "developer", "validator", "deployer"). Custom roles accepted.',
|
|
2958
2951
|
},
|
|
2959
2952
|
role_config: {
|
|
2960
2953
|
type: 'object',
|