Mission
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MissionShow my active assignments and their lifecycle history"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mission
AI agents can act. Mission makes them coordinate.
A chat message is not a work system. It does not guarantee assignment, preserve progress, survive interruption, or enforce declared completion conditions.
Mission gives planners, builders, workers, and auditors a shared state machine for real work: create, assign, start, checkpoint, block, resume, replace, enter validation, close — through MCP.
Agents stop passing intentions around. They move one governed work token toward an explicit end state with a complete history.
Run the real demo · Explore the roadmap · Install v0.1.0
Related MCP server: WorkspaceGuard
The failure mode
Without persistent coordination, “multi-agent” often means several isolated chats and one human acting as the message bus:
Planner: “Agent B has the task.”
Agent B: “Which version? What is done? What blocks me?”
Agent C: “I also started it.”
Restart: “The previous state is unavailable.”
Owner: reconnects the whole system manually.Mission makes work state explicit, persistent, role-bound, and auditable.
See the system move
sequenceDiagram
actor Owner
participant Planner
participant Mission
participant Builder
participant Auditor
Owner->>Planner: Ship a validated release
Planner->>Mission: Create steps, constraints, exit KPIs
Planner->>Mission: Assign Builder
Builder->>Mission: Start
Builder->>Mission: Checkpoint with evidence
Note over Mission: Process restarts
Builder->>Mission: Read restored state: validating
Auditor->>Mission: Inspect history read-only
Builder->>Mission: Close with declared KPI result
Mission-->>Owner: done + complete lifecycle historyThe repository includes a real local MCP lifecycle. It uses signed synthetic planner, worker, and auditor identities, persists the Auftrag, recreates the server, restores the state, lets the auditor inspect history, and closes only after the worker supplies the required KPI key.
Mission does not verify external evidence in v0.1.0. Its close gate validates lifecycle state, required KPI keys, and caller-declared met values. Independent evidence verification belongs in Witness or a future explicit integration contract.
queued -> assigned -> active -> validating
[restart] state restored: validating
validating -> done
MISSION_DEMO_PASS state=done restart=pass auditor_read=pass kpi_gate=caller_declared history=create,assign,start,checkpoint,closeEvidence class: real local product flow. The output comes from the actual public MCP server, state machine, identity checks, SQLite database, restart, and changelog. It is not a mock UI.
Run the real demo
git clone https://github.com/MaximilianoColoma/mission.git
cd mission
uv sync --locked
uv run python examples/coordinated_autonomy_demo.pyWhat this enables
Coordinated autonomy
A planner defines the objective and boundaries. A worker advances only the work assigned to its verified identity. An auditor can inspect without mutating. Admin authority does not bypass lifecycle or acceptance rules.
Builders that survive interruption
Progress is not trapped inside a model context. Steps, checkpoints, active blocks, prior state, assignments, and history persist across process recreation.
Safe handoffs and replacement
Work can be reassigned through an explicit replace operation. The predecessor becomes immutable and the replacement inherits specification and remaining steps — not invented claims of completed work.
Honest blockers
A worker can block without losing the work token, record why, and resume to the previous legal state after resolution.
Completion with teeth
done is not a free-form status change. Required steps must pass and required KPI keys must be present with caller-declared met values before close. Invalid transitions fail without partial mutation. External receipt verification is not part of Mission v0.1.0.
Dream functions
These are enabled patterns, not bundled orchestration in v0.1.0:
Autonomous builder teams where planners, implementers, and validators operate independently without losing one shared mission state.
Follow-the-sun agent operations where a new model or host resumes the exact active step after the previous runtime ends.
Self-healing workflows where blocked work wakes after its dependency is resolved and returns to the correct prior state.
Dynamic model routing where expensive specialists receive only missions that require them, while the work token remains stable.
Auditable swarms where parallel agents remain individually attributable instead of collapsing into one shared bot identity.
Human-agent organizations where owners set direction and acceptance while agents coordinate execution behind one inspectable interface.
Mission supplies the governed work state. Agent spawning, schedulers, wake-up infrastructure, cross-host transport, and automatic Witness receipts remain separate integrations.
Built now — and not yet
Built in the public core | Not included in v0.1.0 |
13 MCP tools across the Auftrag lifecycle | Hosted orchestration control plane |
Planner, worker, auditor and admin roles | Agent spawning or model execution |
Signed identity envelopes and exact request binding | Production federation across hosts |
Assignment eligibility and immutable replacement chains | Telegram, webhook or trigger adapters |
Steps, checkpoints, blocks, resume and close gates | Automatic Mission-to-Witness bridge |
Persistent changelog and restart recovery | Multi-tenant SaaS and billing |
Reproducible Apache-2.0 release artifacts | Customer outcome or scale claims |
Version 0.1.0 is a validated public release. The service is not deployed by this repository, and publication is not a production-support or user-impact claim.
Public MCP surface
Intent | Tools |
Create and inspect work |
|
Assign and replace |
|
Execute |
|
Handle interruption |
|
Finish safely |
|
Audit |
|
The canonical contracts live under spec/. Mission consumes the Witness identity-envelope contract through an explicit digest-locked projection; it is not a second protocol authority.
Install and verify
Requires Python 3.11+ and uv.
./install.sh --manifest --json
./install.sh --target "$HOME/.local/share/mission" --non-interactive --json
uv sync --locked
uv run python -m pytest -q -p no:cacheprovider tests repair-tests
uv buildThe staged installer scrubs inherited Python environment variables, performs a locked installation, writes bounded local configuration/storage, and runs a real MCP first-run doctor.
Project center
Product roadmap:
ROADMAP.mdGovernance and release authority:
GOVERNANCE.mdContributions and DCO:
CONTRIBUTING.mdSecurity reporting:
SECURITY.mdSupport boundaries:
SUPPORT.mdOfficial naming and forks:
TRADEMARKS.md
License
Licensed under the Apache License 2.0. See NOTICE. Apache-2.0 permits use, modification, redistribution, and commercial use; it does not grant permission to imply official project status or trademark endorsement.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceGoverned agent execution gateway for LLM workflows, providing deterministic FSM-based execution, audit trails, and idempotency guarantees via MCP.5MIT
- FlicenseBqualityBmaintenanceStructured workspace runtime for long-running coding agents, providing controlled workspace capabilities with task state, snapshots, checkpoints, drift detection, verification evidence, audit logs, and structured handoff.20
- AlicenseNot gradedqualityBmaintenanceOrchestrates persistent task graphs and enforces approval policies for MCP-driven agent workflows, coordinating with Agents Gateway for execution.MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to exchange structured work items with an auditable lifecycle, supporting send, acknowledge, block, complete, and cancel operations via a shared SQLite-backed inbox.2Apache 2.0
Related MCP Connectors
Durable agent-to-agent handoffs and shared scratchpad for multi-agent workflows.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Workflow diagnostics, capability routing, and x402 settlement for MCP-compatible agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MaximilianoColoma/mission'
If you have feedback or need assistance with the MCP directory API, please join our Discord server