Astatide Conductor
Provides authentication and authorization via Cloudflare Access, allowing the server to be secured behind Cloudflare's edge.
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., "@Astatide Conductorstart a new objective to refactor authentication module"
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.
Astatide Conductor
Persistent objective/task-graph orchestrator for MCP-driven agent workflows.
The Conductor is a durable coordination layer between MCP-capable cockpits and the existing gateway substrate.
What Conductor is
A persistent objective orchestrator
A task graph manager with durable state
An approval and policy enforcement layer
A dispatch coordinator to Agents Gateway
A high-level MCP cockpit surface
Composer v1 — spec-to-verified-execution engine (planning, parallel dispatch, interaction answering, integration, verification, HTML/JSON reports)
Related MCP server: ControlKeel
What Conductor is NOT
NOT a shell runner
NOT a coding agent (Claude, ChatGPT, opencode, Codex)
NOT a replacement for Agents Gateway
NOT a direct tmux/session manager
Does NOT bypass human approval for irreversible actions
Architecture
Any MCP-compatible cockpit (Claude / ChatGPT / Polychat / CLI / future UI)
|
v
CONDUCTOR ─── single hub (REST + MCP)
|
+--> Composer (spec-to-verified-execution engine)
|
+---+---+---+---+---------+
| | | | | |
v v v v v v
Agents Skills MCP wiki future gateways
Gateway Gateway Gateway mcp (mail / calendar / cloud / deploy)Conductor is the single hub. Gateways are downstream capability providers
— the MCP Gateway is one of them, not the parent of Conductor. See
docs/gateway-hub.md for the full Gateway Hub
architecture and docs/composer.md for the Composer
spec-to-verified-execution engine.
reference.
Auth model
Three modes (CONDUCTOR_AUTH__MODE):
Mode | Behavior |
| No auth (dev/local only). Refuses to boot if |
| Requires |
| Cloudflare Access JWT ( |
The MCP cockpit surface at /mcp is auth-checked by the same middleware
as the REST API. Unauthenticated MCP traffic gets a 401 with a JSON-RPC 2.0
error envelope (code -32001), so cockpits can parse the rejection cleanly:
{"jsonrpc":"2.0","error":{"code":-32001,"message":"..."},"id":null}REST endpoints keep their normal FastAPI {"detail": "..."} shape — those
are not JSON-RPC envelopes.
Skill validation before dispatch
A task that declares required_skills is validated against the Skills
Gateway before any state transition in dispatch_task:
created → (validate skills) → ready → dispatched → runningIf validation fails:
task.skills_validation_failedevent is emitted with the missing skills in the payload, the task is left in its original state, noagent_runrow is created, no Agents Gateway call is made, and the caller receives a structured error includingmissing_skills.If the gateway is not configured (
CONDUCTOR_SKILLS_GATEWAY_URLunset or localhost), validation is a no-op and the task dispatches normally.
Capability validation before dispatch
A task may declare required_capabilities in its metadata (a JSON list
of dotted capability strings like ["execution.task.create", "external.github"]).
Conductor's Gateway Hub validates each capability has at least one
configured+enabled provider before any state transition. Missing or
degraded capabilities block dispatch and emit a
task.capabilities_validation_failed event; passing emits
task.capabilities_validated. See docs/gateway-hub.md.
Local dev
uv sync
uv run conductor --help
uv run conductor run --port 8093Config
cp .env.example .env
# Edit .env as neededConfig precedence: CLI flags > env vars > YAML > defaults.
Testing
uv run pytest -q # 390+ tests, all offline (uses mocks)
bash scripts/e2e-local.sh # 15/15 smoke (offline, pre-existing)
bash scripts/e2e-local-gateway-hub.sh # 17/17 gateway hub smoke (offline)Docker
docker compose config
docker compose up -d --buildLive E2E (real gateway)
Two live E2E pathways, both refusing to run without credentials:
Script | Scope |
| Agents Gateway + Skills Gateway |
| Agents + Skills + MCP Gateway (+ optional wiki) |
See docs/live-e2e.md for the env var list, expected
output, and interpretation guide.
Deployment modes
Edge-auth-only personal mode
Cloudflare Access protects hostname. App uses dev-none or internal-only.
Defense-in-depth production mode
Cloudflare Access + app validates Cloudflare Access JWTs.
Known limitations
LLM planner is not built; deferred to a later milestone.
Autonomous loop mode is not built; deferred.
Harness/tmux runtime is not built; only the existing Mock/HTTP Agents Gateway clients are exercised.
Live E2E only runs when real gateway credentials are provided. The scripts exit 2 and list the missing env vars otherwise.
Skills validation requires Skills Gateway configuration.
The MCP Gateway downstream client supports
health / version / tools/list / tools/call— a standard MCP surface. Custom gateway deployments with a different surface may need a new client adapter.Capability catalog is static per gateway kind for this milestone. Dynamic discovery is planned for a later milestone.
Conductor does NOT run shell commands, NOT bypass Agents Gateway, NOT bypass human approval for irreversible actions.
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
- Alicense-qualityDmaintenanceEnables orchestration of MCP tool calls through declarative YAML-defined directed graphs with data transformation, conditional routing, and observable execution flows.Last updated6518MIT
- FlicenseAqualityAmaintenanceGovernance/control plane for MCP-enabled coding-agent workflows with validation, findings, approvals, budgets, and proof bundles.Last updated5511
- AlicenseAqualityAmaintenanceGoverned agent execution gateway for LLM workflows, providing deterministic FSM-based execution, audit trails, and idempotency guarantees via MCP.Last updated5MIT
- AlicenseBqualityBmaintenanceTask Orchestrator MCP is a task orchestration server that helps AI agents execute complex workflows with proper dependency management. It enables structured task execution, automatic dependency resolution, retry logic, and persistent storage for tracking progress over time.Last updated2742MIT
Related MCP Connectors
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
Coordinate multiple AI agents over MCP: atomic claims, leases, shared ledger, handoffs, tasks.
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/Astatide1337/conductor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server