@vibescope/mcp-server 0.3.12 → 0.3.13
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/handlers/session.js +1 -0
- package/docs/TOOLS.md +3 -1
- package/package.json +1 -1
- package/src/handlers/session.ts +1 -0
package/dist/handlers/session.js
CHANGED
|
@@ -148,6 +148,7 @@ export const startWorkSession = async (args, ctx) => {
|
|
|
148
148
|
result.auto_continue = true;
|
|
149
149
|
// Session info
|
|
150
150
|
result.session_id = data.session_id;
|
|
151
|
+
result.IMPORTANT_session_id_reminder = `Save this session_id ("${data.session_id}") and pass it on EVERY update_task and complete_task call. Without it, the dashboard shows "Agent" instead of your name.`;
|
|
151
152
|
result.persona = data.persona;
|
|
152
153
|
result.role = data.role;
|
|
153
154
|
result.project = data.project;
|
package/docs/TOOLS.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Auto-generated from tool definitions. Do not edit manually.
|
|
4
4
|
>
|
|
5
|
-
> Generated: 2026-02-
|
|
5
|
+
> Generated: 2026-02-18
|
|
6
6
|
>
|
|
7
7
|
> Total tools: 159
|
|
8
8
|
|
|
@@ -416,6 +416,7 @@ For projects without git branching (trunk-based or none), use skip_worktree_requ
|
|
|
416
416
|
| `worktree_hostname` | `string` | No | Machine hostname where worktree was created (os.hostname()). Required with worktree_path to enable machine-aware cleanup. |
|
|
417
417
|
| `model_capability` | `"haiku" | "sonnet" | "opus"` | No | Recommended model capability: haiku (simple tasks), sonnet (standard), opus (complex reasoning) |
|
|
418
418
|
| `skip_worktree_requirement` | `boolean` | No | Skip git_branch requirement for projects without branching workflows (trunk-based or none). Default: false |
|
|
419
|
+
| `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. |
|
|
419
420
|
|
|
420
421
|
---
|
|
421
422
|
|
|
@@ -447,6 +448,7 @@ The auto_continue: true flag in the response means you are expected to continue
|
|
|
447
448
|
|-----------|------|----------|-------------|
|
|
448
449
|
| `task_id` | `string` | Yes | Task UUID |
|
|
449
450
|
| `summary` | `string` | No | Brief summary of what was done. This is stored on the task as completion_summary and displayed when reviewing completed tasks. |
|
|
451
|
+
| `session_id` | `string` | No | Session ID from start_work_session. Required for cloud agents using mcporter. |
|
|
450
452
|
|
|
451
453
|
---
|
|
452
454
|
|
package/package.json
CHANGED
package/src/handlers/session.ts
CHANGED
|
@@ -179,6 +179,7 @@ export const startWorkSession: Handler = async (args, ctx) => {
|
|
|
179
179
|
|
|
180
180
|
// Session info
|
|
181
181
|
result.session_id = data.session_id;
|
|
182
|
+
result.IMPORTANT_session_id_reminder = `Save this session_id ("${data.session_id}") and pass it on EVERY update_task and complete_task call. Without it, the dashboard shows "Agent" instead of your name.`;
|
|
182
183
|
result.persona = data.persona;
|
|
183
184
|
result.role = data.role;
|
|
184
185
|
result.project = data.project;
|