Install MCP Agent Mail, start the server, and launch your first reservation-aware multi-agent workflow.
Install the binary with the recommended one-liner.
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/mcp_agent_mail_rust/main/install.sh?$(date +%s)" | bashStart `am`, register an agent, reserve files, and coordinate through threaded messages.
01# 1) Start MCP Agent Mail server + TUI02am03 04# 2) Bootstrap session context one call05macro_start_session(06 project_key="/abs/path/to/repo",07 program="codex-cli",08 model="gpt-5"09)10 11# 3) Reserve files before editing12file_reservation_paths(13 project_key,14 agent_name,15 ["src/**"],16 ttl_seconds=3600,17 exclusive=true18)19 20# 4) Coordinate through threaded messages21send_message(22 project_key,23 sender_name="GreenCastle",24 to=["BlueLake"],25 subject="Starting auth refactor",26 thread_id="FEAT-123",27 ack_required=true,28 body_md="I have reservations on src/auth/**; taking login + token rotation."29)30fetch_inbox(project_key, agent_name)31acknowledge_message(project_key, agent_name, message_id)Add the MCP server entry once; then your agent CLI can call Agent Mail tools directly.
01{02 "mcpServers": {03 "agent-mail": {04 "command": "mcp-agent-mail",05 "args": []06 }07 }08}The foundations of safe multi-agent execution at scale.
Scoped Agent Identity
Project-scoped identities, thread continuity, and explicit inbox semantics keep parallel agents coordinated instead of colliding.
Reservation Guardrails
Advisory file reservations plus optional guard enforcement make ownership visible before edits and safer at commit time.
Auditable Workflows
Messages, acknowledgements, and search traces are queryable in SQLite and preserved in a Git-auditable archive.
Answers to common setup and operations questions for MCP Agent Mail.