Zum Inhalt springen
Actionforge
Sign up
Docs
Orchestrator

Graph Runner MCP

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

The actrun CLI includes a built-in MCP server for running and debugging graphs locally. It communicates over stdio and exposes debug tools that let an AI agent step through graph execution node by node, set breakpoints, and inspect state.

Terminal window
claude mcp add actrun -- actrun mcp
ToolDescription
debug_connectConnect to a local actrun debug server
debug_runSend a graph and start execution
debug_stepStep over the current node
debug_step_intoStep into a group node
debug_step_outStep out of a group node
debug_resumeResume until breakpoint or completion
debug_pausePause at the next node
debug_set_breakpointSet a breakpoint at a node
debug_remove_breakpointRemove a breakpoint
debug_inspectInspect current debug state
debug_logsRetrieve buffered log output
debug_stopStop the current execution
debug_disconnectClose the debug connection

The AI agent follows this flow automatically:

  1. Start actrun --local in the background (captures the WebSocket port)
  2. Call debug_connect with the port
  3. Read the .act file from disk and send it via debug_run
  4. Step through execution with debug_step / debug_step_into / debug_resume
  5. Inspect state and logs at each pause point
  6. Call debug_disconnect and stop the background process when done