Cell fabric daemon: spawn and coordinate Claude/Codex/pi worker cells over MCP. Audited.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Inspect callable tools, capabilities, and parameters exposed to AI agents by Mcp Crewd Rs.
Fabric`cell_spawn` (launch a worker cell: engine + profile + task),
Bus`cell_send` (fire-and-forget), `cell_ask` / `cell_await`
crewd is a cell fabric daemon for AI agents: it lets one AI session (Claude Code, Codex CLI, or any MCP client) spawn, coordinate and message other AI worker sessions β cells β through a single MCP server. Rust, one static binary per component, no network listener: everything runs over a local Unix socket.
Part of the mcp-*-rs family of Rust MCP servers.
| Binary | Role |
|---|---|
crewd | Daemon: cell registry, job scheduler, engine supervisor, message bus, SQLite (WAL) store, append-only hash-chained audit log |
crew | Operator CLI (status, inspect, audit verify) + per-cell MCP stdio shim (crew mcp) |
Mounted per-cell via crew mcp:
cell_spawn (launch a worker cell: engine + profile + task),
cell_send_task, cell_status, cell_result, cell_cancel, cell_listcell_send (fire-and-forget), cell_ask / cell_await
(ask ticket + long-poll reply), cell_reply, cell_broadcast, cell_inboxWorker cells get the same shim with --worker-mode, which hides the spawn
surface (no uncontrolled nested fan-out).
| Engine | How | Session continuity |
|---|---|---|
claude | Node shim on the Claude Agent SDK (shim/claude-shim.mjs) | resume by session id |
codex | codex app-server JSON-RPC (v2 protocol) | reattach by thread id |
pi | pi rpc | none (v0) |
Claude profiles select where the engine gets its credentials. max (the
default) uses the host's own Claude credentials and needs no extra config.
Additional profiles route the engine to an Anthropic-compatible endpoint,
reading that profile's bearer token from keys_env_path (never from
crewd.toml, argv or logs); the built-in ones are defined in the engine-claude
adapter.
A cell's identity is its working directory: the spawned engine loads
whatever CLAUDE.md, .mcp.json, memory and skills live in the cwd you
pass to cell_spawn. One daemon can therefore serve several "personas" by
spawning cells in different project roots.
Prebuilt binaries (recommended) β download the archive for your platform
from the latest release
and extract; it contains crewd, crew and the shim/ directory:
Prebuilt targets (Linux + Android): x86_64-unknown-linux-gnu,
x86_64-unknown-linux-musl, aarch64-unknown-linux-gnu,
aarch64-unknown-linux-musl (edge / ARM), aarch64-linux-android (Termux).
macOS: no prebuilt binary is shipped (it would need Apple code-signing).
Build from source instead β macOS is CI-tested (peer auth uses
getpeereid + LOCAL_PEERPID there instead of SO_PEERCRED):
From source (any platform) β Rust β₯ 1.85:
Engine runtime requirements: the claude engine needs Node β₯ 20 with
@anthropic-ai/claude-agent-sdk installed next to the shim
(cd shim && npm install); the codex engine needs the codex CLI on the
daemon's PATH.
crewd.toml (passed explicitly via --config, never cwd-derived):
acl.toml β one section per registered cell with its engine and
capabilities (send, ask, reply, broadcast, read_inbox,
list_cells, read_audit, spawn):
Per-cell auth: a 0600 token file per cell (L0 scheme). Mount the shim in
your MCP client config:
0600 inside a 0700 runtime dir; bind refuses symlinks.SO_PEERCRED on
Linux/Android, getpeereid + LOCAL_PEERPID on macOS), then a per-cell
token (file 0600).keys_env_path by the daemon and injected only into the child that
needs them; they never appear in logs or error messages.crew audit verify).interrupted / failed_unknown, never silently retried after engine
acceptance.Scope honesty: processes running under the same UID as the daemon can read the socket and token files β crewd separates cells, it is not a same-user privilege boundary. See THREAT_MODEL.md.
| Platform | Status |
|---|---|
| Linux (x86_64 / aarch64, gnu + musl) | β prebuilt + CI-tested |
| Android / Termux (aarch64) | β
prebuilt (aarch64-linux-android), CI build-checked |
| macOS (Apple Silicon / Intel) | β
from source, CI-tested (getpeereid peer auth) |
| Windows | β not supported (Unix sockets + peer credentials) |
On Termux there is no systemd: run crewd under
termux-services or a plain
nohup crewd --config β¦ &. On macOS use launchd or run it in a terminal.
Pre-1.0 (v0.1.x): single-host fabric (UDS). Cross-host fabric, operator
token CLI and warm engine reuse are on the roadmap.
Apache-2.0. See LICENSE.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-crewd-rs)<a href="https://allmcps.com/mcp/mcp-crewd-rs"><img src="https://allmcps.com/api/badge/mcp-crewd-rs?style=directory" alt="Mcp Crewd Rs on AllMCPs" /></a>