ephemeral-reasoning-mcp
This server provides a single tool, deep_solve, that orchestrates step-by-step reasoning workflows for complex problems without calling external models. It breaks problems into ordered, dependency-based steps, runs each step in a fresh disposable workspace, and returns a compressed final answer. You can optionally enable a verification pass (verify), use compressed reasoning language (caveman mode) to keep intermendiate steps concise, and control reasoning depth with maxSteps (1–20, default 8). The server passes only compressed summaries between steps, keeping the working context small. It is stateless, requires no API keys or environment variables, and works with any MCP‑compatible client (Claude Desktop, Claude Code, Cursor, Windsurf, etc.). Note: only this reasoning tool is included—not the broader set of tools described in the README.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ephemeral-reasoning-mcpCreate a step-by-step plan to learn Spanish in 6 months"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
containerized-reasoning-mcp
MCP server that gives an LLM a disposable, step-by-step reasoning workflow, without calling any model API itself. No API key required. The host model (whatever's driving the chat - Claude, GPT, or anything else connected via MCP) does all the actual reasoning. This server just tracks the plan and hands back only compressed summaries between steps, so the working context stays small as the problem grows.
How it differs from a "sub-agent" design
Some reasoning-pipeline MCP servers spin up their own internal LLM client (needing its own API key) to do planning/reasoning/verification behind the scenes. This one doesn't call any model at all - it's a pure state machine. The host model:
Breaks the problem into steps itself and calls
containerized_reasoning_mcp_start.Reasons through the returned step(s), using only the compressed prior summaries it's given (not full raw reasoning from earlier steps).
Calls
containerized_reasoning_mcp_submit_stepwith a compressed summary, gets the next step(s) back.Repeats until the plan is complete, then calls
containerized_reasoning_mcp_finalize.
Because no model call happens inside the server, this works with any MCP-compatible client,
regardless of which model or provider is behind it - no ANTHROPIC_API_KEY, no provider lock-in.
Trade-off vs. the sub-agent design
The upside is zero API key / zero extra cost / works everywhere. The trade-off: since the host model does the reasoning in its own turns rather than in a truly separate hidden context, its visible output for each step still appears in the conversation transcript (there's no hiding raw reasoning traces the way a disposable sub-agent call could). What you still get is the discipline of the pipeline (ordered/parallel steps, compressed handoff between them) and no dependency on a second model or key.
Related MCP server: UltraThink
Pipeline
Problem -> (host plans steps) -> containerized_reasoning_mcp_start
-> Step 1 (host reasons) -> containerized_reasoning_mcp_submit_step -> Step 2 ...
-> ... -> plan complete -> containerized_reasoning_mcp_finalize -> Final Answer (+ optional verification)Steps run in the order given. Steps sharing the same parallelGroup are handed back together as
independent work the host can do in either order.
Setup
git clone https://github.com/devLlama/containerized-reasoning-mcp.git
cd containerized-reasoning-mcp
npm installThat's it - no environment variables, no API key.
Run standalone
npm startRuns as an MCP server over stdio.
Install in an MCP client
Standard stdio MCP server - works with any client that supports MCP (Claude Desktop, Claude
Code, Cursor, Windsurf, claude.ai connectors, etc). Point the client at node plus the absolute
path to src/index.js. No env block needed.
Claude Desktop
Edit your claude_desktop_config.json (Settings -> Developer -> Edit Config):
{
"mcpServers": {
"containerized-reasoning": {
"command": "node",
"args": ["/absolute/path/to/containerized-reasoning-mcp/src/index.js"]
}
}
}Restart Claude Desktop after saving.
Claude Code
claude mcp add containerized-reasoning -- node /absolute/path/to/containerized-reasoning-mcp/src/index.jsOr add the same block as above to your project's .mcp.json.
Cursor / Windsurf / any MCP-compatible app
Same command/args shape as above (Cursor's mcp.json uses the same schema). Consult that
app's docs for where its MCP config file lives.
claude.ai web chat
claude.ai's web chat connects to remote (HTTP/SSE) MCP servers via Settings -> Connectors,
not local stdio processes launched from a browser tab. To use this server from claude.ai's web
chat specifically, you'd need to deploy it behind an HTTP/SSE MCP transport and register it as a
remote connector - running it locally via node src/index.js only works with clients that can
launch local stdio processes (Claude Desktop, Claude Code, Cursor, etc).
Tools
tool | purpose |
| Submit the problem + your own step plan; get the first step(s) back |
| Submit a step's compressed summary; get the next step(s) or a "plan complete" signal |
| Submit the final answer (+ optional self-verification); get the compiled result, closes the session |
| Inspect an in-progress session without submitting anything |
| Abandon a session |
Sessions are held in memory for the life of the server process (keyed by sessionId), so they
don't survive a server restart.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityDmaintenanceA MCP server that implements sequential thinking protocols, provides structured problem-solving methods, decomposes complex problems into manageable steps, and supports iterative optimization and alternative reasoning paths.Last updated12Apache 2.0
- AlicenseAqualityDmaintenanceA Python-based MCP server that facilitates structured problem-solving through sequential thinking, branching, and confidence scoring. It allows users to track assumptions and manage multiple concurrent reasoning sessions to break down complex tasks.Last updated118MIT
- AlicenseAqualityDmaintenanceA structured problem-solving MCP server that breaks down complex tasks into sequential steps, supports iterative refinement and branching, and helps maintain context and explore alternative reasoning paths.Last updated12141MIT
- Alicense-qualityDmaintenanceA powerful MCP server that enhances LLMs with advanced sequential thinking capabilities, supporting 19 thinking modes for structured reasoning and complex cognitive tasks.Last updated16MIT
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devLlama/containerized-reasoning-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server