agenticonsult logoagent i /consultDocs
Agentic infrastructureMCP servers

missions

The missions registry surface — create, transition, and audit missions, operations, and projects from any agent session.

This server is the agent door to the missions cockpit — the registry the Missions Board sits on. Its 12 tools cover the full portfolio surface: create and list missions, read one in full, transition lifecycle states, group missions into projects, attach and list mission documents, read the event timeline, create and transition operations inside a mission, and lint the registry for inconsistencies.

The design fact that shapes every tool here: the files are the source of truth. A mission lives as a folder and dossier on disk under your documents tree; the database behind the board is a rebuildable projection of those files. So mission_create scaffolds a real folder you can open and read, transitions rename it through its lifecycle with contents preserved, and mission_lint exists precisely to catch file-vs-registry drift before it confuses anyone. Agents and the board work the same registry — a mission an agent opens mid-session appears on your Kanban immediately, subject to the same enforced lifecycle and definition of done. The server also connects to the terminal control plane, which is how dispatching a mission can stand up a live commander-and-workers fleet in the Terminals view.

How your agents use it

  • "Open a mission for the documentation overhaul."mission_create scaffolds the folder and dossier; mission_transition moves it to active when work starts, and through the completion gate when it is done.
  • "Brief me on this mission."mission_get for the current state, mission_documents for the working files, mission_events for the timeline of what has happened.
  • "Split the work into operations."operation_create per workstream inside the mission folder, operation_transition as each one moves from planned to completed.

Prerequisites

No keys and no model cost — this is registry access over your own files and the local missions database. Dispatching a fleet from a mission additionally requires the terminal control plane to be enabled (see cc-terminals and the configuration reference).

Tool reference

ToolParametersWhat it does
mission_createname*: string, description: string, priority: string, depends_on: string, project: string, lifecycle: string, created_by: stringCreate a mission DB-FIRST. The deterministic materializer writes the MISSIONS_LOG registry block + the mission folder + dossier + operations container (create-only); the reconciler then projects + logs it. No byte-exact hand-crafting. Returns the slug.
operation_createmission*: string, name*: string, brief: string, status: string, created_by: stringCreate an operation DB-FIRST under a mission (folder + brief, create-only). Returns the operation id '<mission>/<op>'.
mission_listcreated_after: string, created_before: stringList all missions (projection rows: slug, lifecycle, priority, goals met, ordinal, …).
mission_getslug*: stringGet one mission's full detail — the mission row + its operations + its goals.
mission_documentsslug*: stringList the files the reconciler picked up under a mission (dossier/brief/output/…, op-linked).
mission_eventsslug*: string, limit: integerA mission's event timeline (newest first) — status changes, op statuses, goals met, docs added.
mission_transitionmission*: string, to*: string, reason: string, force: booleanTransition a mission's lifecycle (planned/active/completed/cancelled/archived) — the guarded Rust verb: folder rename + terminal snapshot/stub + section relocate + an actor-attributed Timeline event. A move to 'completed' is GATED on all Success Conditions met + all operations terminal; on a gate error, surface the unmet list to the operator and only retry with force=true if they approve (a forced completion is audited as completion_forced).
operation_transitionmission*: string, op*: string, to*: stringTransition an operation's status (planned/active/completed/failed) — the coupled folder+brief rename + frontmatter sync + an actor-attributed Timeline event. Replaces the error-prone manual double-rename.
mission_lintThe registry-health lint (report-only): per-mission findings — uuid mismatches (log/db vs dossier), unknown/void depends-on refs, blocks over the offload budget, missing ops containers, stale overview conflicts, missing Lifecycle fields — plus the whole-log token estimate vs its budget. Never mutates.
project_createname*: string, description: string, priority: string, lifecycle: string, created_by: stringCreate a PROJECT DB-FIRST (Phase 3) — a grouping entity for related missions. Writes the PROJECTS_LOG block + the project folder + dossier; the reconciler projects it. Missions ASSOCIATE to a project (via mission_set_project or the mission's project field), never fold in. Returns the slug.
project_listList all projects (the grouping registry: slug, lifecycle, priority, associated-mission count).
mission_set_projectmission*: string, project: stringAssociate a mission with a project, or clear it (empty project). Writes the mission's **Project:** field; the reconciler resolves it to the immutable project uuid (rename-stable).

Where to go next

On this page