You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`thread_create`|`topic`| Create a new conversation thread. Returns `thread_id`. |
528
+
|`thread_create`|`topic`| Create a new conversation thread. Optional `template` to apply defaults (system prompt, metadata). Returns `thread_id`. |
529
529
|`thread_list`| — | List threads. Optional `status` filter. |
530
530
|`thread_get`|`thread_id`| Get full details of one thread. |
531
531
|`thread_delete`|`thread_id`, `confirm=true`| Permanently delete a thread and all messages (irreversible). |
532
532
533
533
> **Note**: Thread state management (`set_state`, `close`, `archive`) are available via **REST API** (`/api/threads/{id}/state`, `/api/threads/{id}/close`, `/api/threads/{id}/archive`), not MCP tools.
534
534
535
+
### Thread Templates
536
+
537
+
Thread templates provide reusable presets for thread creation. Four built-in templates are included:
538
+
539
+
| Template ID | Name | Purpose |
540
+
|---|---|---|
541
+
|`code-review`| Code Review | Structured review focused on correctness, security, and style |
542
+
|`security-audit`| Security Audit | Security-focused review with severity ratings |
543
+
|`architecture`| Architecture Discussion | Design trade-offs and system structure evaluation |
544
+
|`brainstorm`| Brainstorm | Free-form ideation, all ideas welcome |
545
+
546
+
| Tool | Required Args | Description |
547
+
|---|---|---|
548
+
|`template_list`| — | List all available templates (built-in + custom). |
549
+
|`template_get`|`template_id`| Get details of a specific template. |
0 commit comments