The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MCP Task Orchestrator listing page.
Server-enforced workflow discipline for AI agents.
Prompt-based frameworks hope the LLM follows instructions. This one blocks the call if it doesn't.
Multi-agent workflows need infrastructure the model doesn't provide. When an orchestrator dispatches sub-agents across sessions, there's no built-in way to enforce what documentation must exist before work starts, track which agent made which change, or guarantee dependency ordering across a work breakdown. These are structural concerns — they belong in the server, not in prompts.
Task Orchestrator is an MCP server — not a prompt layer. It provides 14 tools that give any MCP-compatible AI agent a persistent work item graph with server-enforced quality gates. The enforcement happens at the tool level: if a required design note isn't filled, advance_item returns an error. If a dependency isn't satisfied, the transition is blocked. If actor authentication is enabled and an agent doesn't identify itself, the call is rejected before it reaches the server.
The rules live in the server, not the conversation.
What this means in practice:
| Prompt-Based Frameworks | Task Orchestrator | |
|---|---|---|
| Enforcement | Instructions that agents should follow | Server blocks the call if rules aren't met |
| Persistence | File-based state | SQLite database with structured queries |
| Accountability | No concept of which agent did what | Actor attribution with pluggable verification (JWKS) |
| Dependency ordering | Sequenced by prompt convention | Server validates dependency graphs before allowing transitions |
| Session continuity | Conversation history or file reconstruction | get_context() returns full state in one call |
| Portability | Tied to one AI client | Works with any MCP-compatible client |
Schemas define what agents must produce at each phase — and the server blocks progression until it's done. But schemas do more than gate transitions. They set a planning floor: when an agent enters plan mode, the schema tells it what documentation must exist before implementation can start, shaping the plan structure itself.
advance_item(trigger="start") from queue requires requirements to be filled. No exceptions, no prompt-dependent compliance — the server returns an error with exactly which notes are missing.
The guidance field provides authoring instructions surfaced at the right moment — when the agent is about to fill that note, get_context returns the guidance as a guidancePointer. The skill field takes this further: it references a specific skill that the agent must invoke before filling the note, providing a deterministic evaluation framework rather than freeform prose. Together, they create structured agent behavior that's configured in YAML, not hardcoded in prompts.
Traits add cross-cutting note requirements to any schema without duplicating definitions. Define a trait once, apply it to any item type:
Every feature-task item automatically inherits the security-assessment note requirement. Traits can also be applied per-item via the traits parameter on manage_items — a task touching authentication gets needs-security-review while a CSS cleanup doesn't.
Everything is a WorkItem in a hierarchical graph. Items nest up to 4 levels deep, connected by typed dependency edges. Create an entire work breakdown atomically:
When schema reaches terminal, api is automatically unblocked. When all children complete, the parent cascades to terminal. Dependency ordering is enforced by the server — structurally, not by convention.
Every advance_item transition and manage_notes upsert accepts an optional actor claim:
Enable actor authentication in config to require it:
When enabled, calls without actor claims are blocked before reaching the server. Query responses include the full delegation chain — which orchestrator dispatched which sub-agent, who wrote which note, who made which transition. Post-mortem debugging becomes a data query, not a conversation archaeology exercise.
No context rebuilding. One call recovers the full picture:
Returns active items, recent transitions (with actor attribution), blocked items, stalled items with missing notes, and full ancestor chains. A new session has complete state in a single response.
Notes provide targeted, phase-specific documentation attached to work items. An implementation agent reads a concise requirements note scoped to its task rather than scanning broader project context.
Notes are keyed, role-scoped, and queryable:
Metadata-only queries (includeBody=false) let agents check what exists without paying the token cost of reading every note body.
Search across all work items and notes by keyword. Results are relevance-ranked, so agents surfacing related work or picking up after a long gap get the most relevant matches first — not just a flat list.
Search can be scoped to a subtree, filtered by status or tag, or run across the entire workspace. Agents use this to find related work before starting something new, or to locate a specific note without knowing which item it's attached to.
Task Orchestrator enforces workflow structure without imposing methodology. The server owns the guardrails — role transitions, dependency ordering, gate enforcement, and accountability. Agents own everything else. There are no mandatory planning ceremonies, no prescribed development processes, no opinion on how agents approach implementation. Schemas, traits, and actor authentication are opt-in layers that integrate with your team's development policies through .taskorchestrator/config.yaml. As models gain new capabilities, the harness stays out of the way rather than constraining what agents can do.
Prerequisite: Docker installed and running.
If you work across multiple projects, set up once and every project you open just works: run
one persistent server with the REST API on, and each project's .taskorchestrator/config.yaml syncs
into it automatically via config-sync — no per-project container, no manual config mounting.
Pull the image, then run the plugin's /configure-server skill (or use the equivalent manual setup
below) to stand up a persistent local server:
Register it in .mcp.json (HTTP shape — not an args array):
And export the client-side env so config-sync can find the server (without this, config-sync
silently no-ops):
SECURITY: unauthenticated REST means anyone who can reach the port has full read/write/delete access. This is only safe because the port is published loopback-only (
-p 127.0.0.1:3001:3001). Never publish it on0.0.0.0or a wider interface.
Prefer not to wire this up by hand? Install the plugin and run /configure-server — it renders
all of the above (plus the bearer-token and STDIO alternatives) interactively.
If you don't want a persistent daemon and are fine hand-mounting each project's config, STDIO is the simpler no-setup option — a per-session container, no port, no REST API:
Or add the same shape to .mcp.json:
Restart your client. The server auto-initializes on first run — no setup required.
To activate workflow schema gates on STDIO, mount the project's config directly instead of relying on config-sync:
Without schemas, all 14 tools work in schema-free mode — no gates, no required notes. Add schemas when you want enforcement.
The plugin adds workflow automation on top of the MCP server — skills, hooks, and an orchestrator output style.
Install:
What it adds:
| Layer | What it does |
|---|---|
| Skills | Slash commands for common workflows — /task-orchestrator:create-item, /task-orchestrator:manage-schemas, /task-orchestrator:quick-start, /task-orchestrator:configure-server |
| Hooks | Automatic context injection at session start, plan mode integration, sub-agent context handoff, actor attribution enforcement |
| Output style | Workflow Orchestrator mode — Claude plans, delegates to sub-agents, and tracks progress without writing code directly |
The MCP server works without the plugin. The plugin makes it seamless with Claude Code.
| Category | Tools | Purpose |
|---|---|---|
| Graph | manage_items, query_items, create_work_tree, complete_tree | Build and query the work item hierarchy |
| Notes | manage_notes, query_notes | Persistent phase-scoped documentation |
| Dependencies | manage_dependencies, query_dependencies | Typed edges with pattern shortcuts (linear, fan-out, fan-in) |
| Workflow | advance_item, get_next_status, get_context, get_next_item, get_blocked_items, claim_item | Trigger-based transitions with gate enforcement, dependency validation, and atomic find-and-claim (selector mode) for multi-agent fleets |
Every tool supports short hex ID prefixes — advance_item(itemId="a3f2") instead of full UUIDs.
| Resource | What's there |
|---|---|
| Quick Start Guide | Full setup walkthrough with first work item |
| API Reference | All 14 MCP tools — parameters, response shapes, actor attribution |
| REST API Reference | HTTP REST endpoints, DTOs, SSE, auth, merge-patch, ETag |
| Workflow Guide | Schemas, phase gates, dependencies, lifecycle modes |
| Fleet Deployment | Multi-agent operators: REST API auth, MCP actor identity, SQLite tuning, capacity planning |
| Wiki | Full documentation hub |
| Changelog | Release history |
| Contributing | Developer setup and contribution process |
Clean Architecture (Domain > Application > Infrastructure > Interface) with comprehensive test coverage.
Key capabilities added in recent versions:
API_ENABLED=true) exposes items, notes, dependencies, transitions, config, and real-time SSE events to dashboards, CI systems, and operators. Supports static bearer tokens, JWKS JWT auth, and an opt-in unauthenticated loopback mode (API_AUTH_MODE=none) for single-developer local setups — see Quick Start above and /configure-server. See current/docs/api-rest.md for the full endpoint reference.query_dependencies(operation="backlinks") finds all items that reference a given item (reverse-direction edge lookup)MIT License — Free for personal and commercial use.