-
Notifications
You must be signed in to change notification settings - Fork 21
Home
github-actions[bot] edited this page May 6, 2026
·
10 revisions
Stop losing context. Start building faster.
MCP Task Orchestrator is an open-source MCP server that gives AI agents persistent, structured task tracking across sessions. Built around a unified WorkItem graph with Note attachments and Dependency edges, it keeps context lean while making complex project work visible. v3 is a ground-up rewrite with 13 tools, role-based workflow, and note schema gating.
- Unified WorkItem model — one entity type at flexible depth (0-3), replacing separate Project/Feature/Task distinctions
- 13 tools with graph-aware queries (
includeAncestors,includeChildren) that eliminate sequential parent-walk calls - Role-based workflow:
queue->work->review->terminalwith named triggers (start,complete,block,hold,resume) - Note schemas — per-tag documentation requirements that gate phase transitions before an item can advance
- Dependency patterns:
linear,fan-out,fan-inwithBLOCKS,IS_BLOCKED_BY, andRELATES_TOedge types -
create_work_treefor atomic hierarchy creation;complete_treefor batch topological completion
Run this once in your terminal to register the server with Claude Code:
claude mcp add-json mcp-task-orchestrator '{
"command": "docker",
"args": [
"run", "--rm", "-i",
"-v", "mcp-task-data:/app/data",
"ghcr.io/jpicklyk/task-orchestrator:latest"
]
}'After running, restart Claude Code and run /mcp to verify the connection. You should see mcp-task-orchestrator listed as connected with all 13 tools available.
| Guide | Description |
|---|---|
| Quick Start | Docker setup, first work item, note schemas, key concepts |
| API Reference | All 13 MCP tools — parameters, response shapes, and examples |
| Workflow Guide | Role lifecycle, triggers, note schemas, dependency patterns, cascade behavior |
| Fleet Deployment | Multi-agent fleet operators: identity policy, SQLite tuning, capacity planning, claim disclosure, observability |
| Integration Guides | Progressive tiers from bare MCP tools to self-improving orchestration |
Getting Started
Integration Guides
- Overview
- Bare MCP
- CLAUDE.md-Driven
- Note Schemas
- Plugin: Skills & Hooks
- Output Styles
- Self-Improving Workflow
Reference
Operations
Project