Durable MCP control plane for long-running Codex Desktop tasks.
If you already use Codex Control Plane MCP, the codex control plane mcp mcp server is the piece that lets your assistant work with it directly. Durable MCP control plane for long-running Codex Desktop tasks.
codex-control-plane-mcp turns Codex Desktop and codex-app-server into a durable worker that an MCP client can drive safely. Send a task, get an operationId or workflowId right away, poll until the work finishes, approve Plan Mode when needed, then read the final report.
The server ships on PyPI as codex-control-plane-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
Local-first — not intended to be exposed as a public network serviceRetry — safe client_request_id handlingMCP — owned hook history in SQLite for search, summaries, and fallback readscodex_get_worker_status — codex_get_queue_statuscodex_get_concurrency_status — codex_get_worker_command_statusoperationRowAgeSeconds — age of the durable operation row;turnFreshness.lastProgressAgeSeconds — age of the last turn progress event;workerFreshness.heartbeatAgeSeconds — age of the worker heartbeat;codex_submit_task — codex_get_operation_statuscodex_start_plan_workflow — codex_start_review_workflowcodex_get_workflow_status — codex_approve_plancodex_list_pending_interactions — codex_answer_pending_interactionThis sits in the database access group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Codex Control Plane MCP's toolset — Local-first, Retry, MCP and 11 more — is a fair guide to whether it matches your workflow. It is maintained by aresyn; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Codex Control Plane MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| Local-first | not intended to be exposed as a public network service. |
| Retry | safe client_request_id handling. |
| MCP | owned hook history in SQLite for search, summaries, and fallback reads. |
| codex_get_worker_status | codex_get_queue_status |
| codex_get_concurrency_status | codex_get_worker_command_status |
| operationRowAgeSeconds | age of the durable operation row; |
| turnFreshness.lastProgressAgeSeconds | age of the last turn progress event; |
| workerFreshness.heartbeatAgeSeconds | age of the worker heartbeat; |
| codex_submit_task | codex_get_operation_status |
| codex_start_plan_workflow | codex_start_review_workflow |
| codex_get_workflow_status | codex_approve_plan |
| codex_list_pending_interactions | codex_answer_pending_interaction |
| codex_interrupt_turn | codex_archive_thread |
| codex_unarchive_thread | codex_start_thread_compaction |
Minimal stdio entry:
```json
{
"mcpServers": {
"codex-control-plane": {
"command": "codex-control-plane-mcp",
"args": []
}
}
}Configuration as documented by the project. Restart the client after saving.
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.