deep-think-mcp
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| start_sessionA | Create a new session. Bootstraps the data store on first use. |
| set_session_modeA | Set a session's mode. Only succeeds if no mode is set yet -- once set, mode is immutable for the life of the session. |
| list_modesA | Return both modes' descriptions + recommendations, for the model to relay to the user. |
| resume_sessionC | Return a session's persisted state. |
| list_sessionsA | List every session in the index. |
| clear_sessionB | Wipe a session: deletes its file and removes it from the index. |
| finalize_sessionB | Mark a session finalized. Returns the finalize+move payload:
where the session is saved, the canned human_prompt asking whether
to move it, and the two tools ( |
| move_sessionA | Move a session's file to |
| keep_hereA | Record that the user declined to move the session. No filesystem change. |
| advance_stageA | Advance the session's stage cursor to the next stage in its
|
| begin_thoughtA | Draft a new thought in the session's current stage. Fails with a
directive if a thought is already in progress (commit it first).
|
| critique_current_thoughtB | Open a critique round and return the lens template to apply. Omit
|
| submit_critiqueC | Record the critique produced by applying the current lens. |
| refine_current_thoughtA | Rewrite the thought to address the critique. The server records
the new version and its normalized edit distance vs. the prior one.
|
| score_current_thoughtB | Self-score the refined thought across the 7 utility dimensions
(partial input is tolerated -- missing dims carry forward). |
| commit_thoughtB | Lock the current thought (writing its final refined content back as the thought's content) and clear the current-thought cursor. Fails with a directive if no critique round has completed yet. |
| begin_subagent_thoughtC | Start a subagent thought. With |
| advance_subagent_roundA | Advance the subagent thought by one step. |
| inspect_utility_matrixA | Return the current Nash scoring state: the latest round's per-candidate utility vectors, equilibrium states, and selected winner. Read-only (no engine mutation, no network). |
| commit_subagent_thoughtA | Accept the current equilibrium: lock the winning candidate as the thought's content and clear the current-thought cursor. Fails with a directive if no Nash round has run yet. |
| next_actionA | Authoritative resolver: given this session's persisted state and mode, return the exact next tool to call and a one-line directive. Safe to call at any point in a session's lifecycle -- before a mode is set, mid-critique-loop, right after a thought commits, at the final stage, or once finalized. |
| summarize_sessionA | Deterministic extractive digest of this session's committed
thoughts. |
| compress_historyA | Deterministic extractive digest of prior stages' committed
thoughts, capped at |
| export_sessionA | Return this session's complete state as a JSON-serializable
dict, suitable for handing straight to |
| import_sessionA | Recreate a session from a previous |
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 25 tools
Most tools have distinct purposes, but the presence of begin_thought vs. begin_subagent_thought and commit_thought vs. commit_subagent_thought could cause confusion despite clear descriptions. Overall, the set is well-differentiated.
Tool names are almost all in consistent verb_noun snake_case. 'keep_here' deviates slightly, and 'next_action' is not a verb_noun pair, but the pattern is generally predictable.
25 tools is on the high side, bordering on heavy for an MCP server. While each tool appears justified for the complex workflow, the count could overwhelm agents.
The tool set covers the full lifecycle: session management, thought creation/critique/refinement/commit, subagent rounds, state inspection, export/import. Only minor gaps exist, such as the lack of a tool to directly delete a thought.