Documentation menu
Orchestration

Orchestrating agents over MCP

Connect coding agents like Cursor and Claude Code to Skaftor's per-project MCP server so work is dispatched, contextualized, governed, and reported centrally.

Skaftor exposes a per-project MCP (Model Context Protocol) server — the same programmatic surface coding agents and the CLI connect to. Instead of each developer wiring agents up ad hoc, agents connect to one governed control plane.

Open a project → a work order → 'connect your coding agent' and copy the URL. It looks like:

https://app.skaftor.com/api/mcp/<projectId>?dev=<token>
The link carries a personal dev token — it sees exactly what you're assigned. Treat it like a credential.

Connect an agent

Point any MCP-compatible agent (Cursor, Claude Code) at the URL, or use the CLI, which is a thin client over the same server:

skaftor login "https://app.skaftor.com/api/mcp/<projectId>?dev=<token>"
skaftor wo next            # the recommended next task for you
skaftor wo manifest AUTH-02 # hand the agent full execution context

What the agent can do

  • Pull its next work order and the execution manifest (full context).
  • Ask clarifying questions against the work order.
  • Report progress, commits, and open a pull request.
  • Move work-order status — all governed and observable centrally.

Related