Review, edit, and approve AI agent task plans in a ComfyUI-style visual node editor in your terminal
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

AgentTakt is an MCP (Model Context Protocol) server and TUI tool. When an AI agent (an "Executor" such as Claude Code) sends a task execution plan over MCP, AgentTakt renders it as a node graph in your terminal. You review it with mouse and keyboard โ move, add, and delete nodes, draw dependency edges, edit parameters โ then approve, and the edited plan JSON is returned to the Executor for execution.
If you have uv, no installation is needed. uvx agenttakt fetches and runs AgentTakt on demand, and the .mcp.json example below starts the MCP server the same way.
If you don't have uv, install AgentTakt once:
Installing is also handy for everyday use even with uv โ you start the TUI by hand, so plain agenttakt beats typing uvx agenttakt each time:
AgentTakt runs as two processes: the MCP server, which Claude Code starts for you, and the TUI, which you start yourself in a separate terminal. The TUI is what displays the plan, so start it before asking the Executor for approval.
Running the TUI in the same session as Claude Code does not work. A stdio MCP server has its standard input and output reserved for protocol traffic, so the same process cannot also drive a full-screen terminal UI. That is why the two halves are separate processes talking over a Unix domain socket.
An idle screen appears, waiting for plans from the Executor. Leave this terminal open. If no TUI is running when the Executor calls request_approval, the call fails with:
AgentTakt editor is not running. Ask the user to run "agenttakt" in a separate terminal, then call request_approval again.
On startup the TUI checks PyPI in the background and shows a notification when a newer version is available. Set AGENTTAKT_NO_UPDATE_CHECK=1 to disable the check.
Add the following to your project's .mcp.json:
[!IMPORTANT] Setting
timeout(milliseconds) explicitly is required. Therequest_approvaltool blocks until the human finishes reviewing. MCP progress notifications do not extend client-side timeouts, so the default would cut the request off before approval. The example above sets 30 minutes (1800000). This does not apply toshow_plan, which returns as soon as the TUI receives the plan.
When the Executor calls the MCP tool request_approval(plan, summary), the plan appears in the TUI as a node graph. Once the human edits and approves (or rejects) it, the result is returned as:
See docs/schema.md for the plan JSON format and what to write in each node.
show_plan)show_plan(plan, summary) shows a plan in the TUI without waiting for approval โ it returns {"status": "displayed"} as soon as the editor receives it. Use it when you just want visibility into what the agent is planning, in any mode (not only plan mode). The plan opens with a [view-only] header; closing it sends nothing back to the Executor.
Agents call request_approval naturally when the host is in plan mode, but they will not volunteer plans outside it. To encourage that, add an instruction like this to your project's CLAUDE.md (or equivalent agent instructions):
Note: a [view-only] plan occupies the editor until dismissed; a later request_approval waits in the queue behind it.
Loads a plan from a file, opens the editor, and writes the approval result to --out.
| Key | Action |
|---|---|
a | Approve the plan (confirmation dialog) |
r | Reject the plan (with a reason) |
n | Add a node |
d / Delete | Delete the selected node/edge |
u / U | Undo / Redo |
| Arrow keys | Move the selected node by one cell (fine-tuning) |
Escape | Clear selection |
p | Toggle the parameter panel |
? | Help (controls and how to write type / data) |
q | Quit |
Mouse: drag a node to move it; drag from a node's output port (โ, right edge) and release on another node to create an edge.
Edges are drawn as braille Bezier-like curves by default. If they render poorly in your environment, switch to rounded orthogonal lines with --edges orthogonal.
type / data, and validation rulesNo reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/agenttakt)<a href="https://allmcps.com/mcp/agenttakt"><img src="https://allmcps.com/api/badge/agenttakt?style=directory" alt="AgentTakt on AllMCPs" /></a>