agentic
MCP (Model Context Protocol)
An open protocol for tool / context exposure to AI agents. Mission Control ships an MCP server with 8 tools.
MCP, the Model Context Protocol, is an open standard published by Anthropic for exposing tools, prompts, and data sources to AI agents in a uniform way. An MCP-compatible client (Claude Desktop, Cursor, autonomous agents using the official SDKs) talks JSON-RPC 2.0 to MCP servers over stdio, HTTP, or SSE.
Mission Control's @mc/mcp package exposes eight tools: create_mission, run_mission, get_mission, get_audit_trail, list_provider_scorecard, get_provider_score, open_dispute, emergency_stop. Any MCP client can drop Mission Control into its agent loop with one config block.
Related