MCP bridge for MPAC: coordinate coding agents working on the same repository
Project description
mpac-mcp
📄 Paper: MPAC: A Multi-Principal Agent Coordination Protocol for Interoperable Multi-Agent Collaboration (arXiv:2604.09744)
mpac-mcp is the MCP-facing bridge for MPAC — it lets MCP-aware coding
clients (Claude Code, Cursor, any MCP host) participate in an MPAC
coordination session without re-implementing the protocol themselves.
The underlying protocol and reference runtime live in
mpac-protocol / the
mpac package.
It does not re-implement the coordination protocol. Instead it:
- detects the current repository context
- ensures a local MPAC sidecar is running
- queries the sidecar for shared coordination state
- exposes high-level tools to MCP-compatible coding clients
All bundled smoke scripts now run against an isolated scratch workspace copied from the requested repo path, so repeated runs do not inherit stale conflicts or frozen scope from a long-lived sidecar session.
Current scope
This initial scaffold focuses on the shortest end-to-end path:
- local sidecar auto-discovery / auto-start
- repository-root detection
- session summary query
- first MCP tools:
who_is_workingbegin_taskcheck_overlapget_file_stateack_conflictsubmit_changeyield_taskescalate_conflictresolve_conflicttake_over_task
- a Milestone 0 validation script for "two processes share one local coordinator"
- an end-to-end smoke script for "one external client + one MCP-owned task"
- an end-to-end smoke script for "begin task -> submit change -> yield task"
- an end-to-end smoke script for "ack -> escalate -> resolve"
- an end-to-end smoke script for "suspend -> claim -> take over"
Multi-tenant Hosted Mode (Authenticated Profile)
When deploying a hosted coordinator for multiple projects/teams:
-
Set
MPAC_TOKEN_TABLEas a JSON env var mapping bearer tokens to allowed sessions:{ "<token-for-alice>": {"allowed_sessions": ["proj-alpha"], "roles": ["contributor"]}, "<token-for-bob>": {"allowed_sessions": ["proj-beta"], "roles": ["contributor"]} }
-
Start the sidecar in multi-session mode:
mpac-mcp-sidecar --multi-session --host 0.0.0.0 --port 8766 --tls
The sidecar auto-detects
MPAC_TOKEN_TABLEand switches tosecurity_profile=authenticated. -
Clients connect with their token in the HELLO credential field:
wss://your-host/session/proj-alphaTokens bound to
proj-alphacan only joinproj-alpha— cross-session access returnsCREDENTIAL_REJECTED.
See deploy/fly-coordinator/ for a complete Docker + Caddy + fly.io deployment recipe.
Development status
This directory is the start of the mpac-mcp product entry point. It is
intentionally thin: MPAC remains the runtime and coordination engine;
mpac-mcp is the integration layer.
Running the Milestone 0 smoke check
From this repository root:
python3 mpac-mcp/src/mpac_mcp/milestone0.py --workspace .
This will:
- derive a deterministic local sidecar port from the repo path
- start the local sidecar if it is not already running
- launch two independent demo clients
- announce two overlapping intents
- query the sidecar summary and print the result
Running the tool smoke check
From this repository root:
python3 mpac-mcp/src/mpac_mcp/smoke_tools.py --workspace .
This will:
- ensure the local sidecar is running
- launch one independent demo client
- call
begin_task(...)through the bridge - call
check_overlap(...) - confirm that overlap is visible through shared sidecar state
Running the commit smoke check
From this repository root:
python3 mpac-mcp/src/mpac_mcp/smoke_commit.py --workspace .
This will:
- ensure the local sidecar is running
- call
begin_task(...) - call
submit_change(...)once with a derivedstate_ref_before - verify the sidecar state changed
- call
yield_task(...)
Running the governance smoke check
From this repository root:
python3 mpac-mcp/src/mpac_mcp/smoke_governance.py --workspace .
This will:
- ensure the local sidecar is running
- launch one contributor client and one arbiter client
- call
begin_task(...)to create a real overlap - call
ack_conflict(...) - call
escalate_conflict(...) - call
resolve_conflict(...)
Running the takeover smoke check
From this repository root:
python3 mpac-mcp/src/mpac_mcp/smoke_takeover.py --workspace .
This will:
- ensure the local sidecar is running
- launch one client that leaves with
GOODBYE(intent_disposition="transfer") - verify the sidecar exposes a suspended intent
- call
take_over_task(...) - verify the replacement intent becomes active
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mpac_mcp-0.2.3.tar.gz.
File metadata
- Download URL: mpac_mcp-0.2.3.tar.gz
- Upload date:
- Size: 38.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2da51af7f08849619bb3172a22dfd79ccde9601848b0752d668c95e2a002535c
|
|
| MD5 |
09aaaf45e0bd8cd38dd895be55b4e86e
|
|
| BLAKE2b-256 |
2796ecec2c8577760615eea16d34458021082c54100aac53cdfc07546b970129
|
File details
Details for the file mpac_mcp-0.2.3-py3-none-any.whl.
File metadata
- Download URL: mpac_mcp-0.2.3-py3-none-any.whl
- Upload date:
- Size: 43.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b43dbf71e4652398fbd4a8b780c692f708997541eb1966599b91a6f46c5399d9
|
|
| MD5 |
e5bdb19c56b0790fd65c300729818a9b
|
|
| BLAKE2b-256 |
453c0303d7e0fdd28084a922bded804a5adf8058fd385a9eeb6dd215f8bb8187
|