dsh-orchestrator
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| dsh_host_statusA | Report the connect-only bridge state and current official DSH Web Host capabilities. |
| dsh_delegateA | Create a root session on the configured official DSH Web Host and queue the initial prompt. Uses DSH's configured model; no model argument is accepted. Detached by default. |
| dsh_followupA | Continue the same root DSH session. queue targets the next turn; steer targets the active turn's next step. The write is never automatically retried. |
| dsh_continueA | Compatibility alias for dsh_followup. Continue the same root DSH session. queue targets the next turn; steer targets the active turn's next step. The write is never automatically retried. |
| dsh_statusB | Return separate availability/execution state, root and descendant sessions, queue depths, pending interactions, final message, and bridge cursor/watermarks. |
| dsh_tailB | Read bounded event digests using bridge coordination cursors. Conversation content is fetched from DSH history when reachable and is never copied into bridge persistence. |
| dsh_waitA | Wait at most 30 seconds for a new task cursor, status/availability change, terminal state, or pending interaction. It never waits for whole-task completion. |
| dsh_observeB | Compatibility observation alias. Prefer dsh_wait plus dsh_tail task cursors. |
| dsh_cancelA | scope=turn cancels only the active root turn and preserves queued work. scope=queue non-atomically removes each item from the latest mux queue snapshot. |
| dsh_listA | List bridge task mappings enriched with current derived DSH status when the Host is reachable. |
| dsh_release_workspaceA | Explicitly release this bridge task's persistent workspace claim. This does not close the DSH session or stop Web/Codex from editing the directory. |
| dsh_answer_questionA | Answer one currently pending typed DSH question request. The requestId, task lineage, question ids/order, and selections are validated locally before one non-retried /api/respond write. |
| dsh_resolve_approvalA | Resolve one pending DSH sandbox-escalation approval as allow_once or reject. Never auto-allows; configure this Codex MCP tool with approval_mode=prompt before permitting allow_once. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Most tools have distinct purposes, but dsh_followup/dsh_continue are explicit aliases and dsh_observe is an alias for dsh_wait+dsh_tail, creating selection ambiguity. dsh_host_status and dsh_status also have overlapping names, though their descriptions clarify the difference.
All tools share a consistent dsh_ prefix and snake_case style, and most use verb-first names (delegate, cancel, wait). Minor deviations include noun-based names like dsh_status/dsh_host_status and the alias dsh_continue that duplicates dsh_followup.
At 13 tools, the set is well-scoped for an orchestrator, covering session, task, and approval management without overwhelming bloat. The count is within the ideal 3-15 range.
The surface covers session creation (dsh_delegate), continuation (dsh_followup), monitoring (dsh_status, dsh_tail, dsh_wait), cancellation (dsh_cancel), and human-interaction handling (dsh_answer_question, dsh_resolve_approval). A minor gap is the lack of an explicit session close/termination tool, though dsh_release_workspace handles part of the teardown.