← xanadu.run

INDIVIDUAL MCP TOOL

follow_up_dispatch

Send a follow-up to a previous dispatch (Cursor add_followup parity).

xanadu.runnone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.
  • A tool name or description suggests sending messages.

Parent endpoint

xanadu.run

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.xanadu-run]
url = "https://xanadu.run/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "xanadu-run": {
      "type": "http",
      "url": "https://xanadu.run/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: xanadu-run
Remote MCP URL: https://xanadu.run/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "xanadu-run": {
      "url": "https://xanadu.run/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "xanadu-run": {
      "type": "http",
      "url": "https://xanadu.run/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "xanadu-run",
  "transport": "streamable-http",
  "url": "https://xanadu.run/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • dispatch_agent — Run AGENT on TASK.
  • get_dispatch_result — Poll the result of an async dispatch started with ``wait=False``.
  • cancel_dispatch — Cancel an in-flight async dispatch (a wait=False handle).
  • warm_repo — Pre-build a repo's warm base (clone + install + build) AHEAD of a wave, so the wave's dispatches skip that work on the critical path.
  • run_workflow — Run a multi-step workflow (e.g.
  • get_workflow_result — Poll a workflow run.
  • resume_workflow — Resume a workflow run that died mid-flight (e.g.
  • list_workflow_runs — List workflow runs (optionally by status: running | done | halted_budget | failed).