agentsync-remote
Provides tools for coordinating work across agents by reading and writing a shared claims.json file in a GitHub repository, allowing remote peers to claim tasks, check conflicts, update status, and exchange messages.
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., "@agentsync-remoteany conflicts blocking my claim?"
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.
agentsync-remote
Part of the xylem stack.
A Cloudflare Worker MCP server that makes claude.ai on your phone a peer in
the agentsync coordination mesh —
the same claims.json, the same agentsync branch, the same overlap and
compare-and-swap rules as local agentsync, with no git and no local clone.
Your laptop's Claude Code (local agentsync) and your phone's claude.ai
(agentsync-remote) claim work against the one shared claims.json. Two
transports, one mesh. A local peer and this remote peer are indistinguishable in
claims.json except by their agent id.
Sibling, not a fork. This is a second transport onto the same coordination file as local agentsync — not a variant of it. See
DESIGN.mdfor howgit push-as-CAS becomes GitHub-contents-API-as-CAS.
What it gives you
Seven tools over Streamable HTTP MCP:
Tool | What it does |
| The whole board: every peer's claim, your conflicts, the mailbox. |
| Claim work; blocked if it overlaps an active peer (CAS-safe). |
| Re-check your claim against peers, optionally on one branch. |
| Move your claim through |
| Mark your claim done (done never blocks peers). |
| Recent commits on the coordination branch (local + remote interleaved). |
| Human-in-the-loop notes: ask from the desktop, answer from the phone. |
Related MCP server: mcp-github-pm
Deploy your own (one click, no command line)
Self-host this Worker in your own Cloudflare account. Every step is a click path — you never touch a terminal.
1. Click Deploy to Cloudflare
Click the button above. Cloudflare will:
fork
agentsync-remoteinto your GitHub account,create the Worker in your Cloudflare account, and
connect Workers Builds so future pushes to your fork redeploy automatically.
There are no databases or other resources to provision — this Worker keeps no state of its own (everything lives in your GitHub repo), so the deploy is just the Worker itself.
During the deploy dialog Cloudflare shows the Worker's variables. Set:
Variable | Set it to |
| Your coordination repo, as |
| Leave as |
| Leave as |
| Leave as |
Finish the deploy. (If you skipped setting REPO here, you can set it later in
the dashboard — see below.)
2. Make a GitHub token, then add the two Worker secrets
The Worker reads two secrets. These are not part of the deploy dialog — you add them once in the dashboard after the first deploy.
First, make the GitHub token (this is the GH_PAT value):
GitHub → Settings → Developer settings → Fine-grained personal access tokens → Generate new token:
Repository access: Only select repositories → pick only your coordination repo (the one you put in
REPO).Permissions → Repository permissions → Contents: Read and write.
Nothing else. Generate it and copy the token.
Then add both secrets to the Worker:
Cloudflare dashboard → Workers & Pages → your Worker → Settings → Variables and Secrets → Add → type Secret → add each, then Deploy:
Secret | Value |
| A long random string you invent. It locks the endpoint — treat it like a password. |
| The fine-grained GitHub token you just made. |
While you're on this screen, confirm the REPO variable points at your
coordination repo (set it here if you skipped it in the deploy dialog).
Until
AUTH_TOKENis set the Worker answers every request with404(it fails closed). UntilGH_PATis set the tools return a clear error naming the missing secret. This is by design — an unconfigured endpoint looks like it doesn't exist.
3. Add the connector in claude.ai
Find your Worker's URL: Workers & Pages → your Worker shows it, in the form
https://<your-worker-name>.<your-subdomain>.workers.dev.
claude.ai (web) → Settings → Connectors → Add custom connector. Paste your
Worker URL with /mcp/ and your AUTH_TOKEN appended:
https://<your-worker-name>.<your-subdomain>.workers.dev/mcp/<AUTH_TOKEN>The token in the path is the auth — there is no separate login.
4. Test it
Ask Claude: "call survey". You should get the coordination board back (empty
claims on a fresh mesh — the Worker bootstraps the branch and file for you, so
a brand-new empty repo needs no manual setup).
🔒 Security — the connector URL is a credential
The connector URL embeds your AUTH_TOKEN in the path
(…/mcp/<AUTH_TOKEN>). Anyone who has that URL can call your Worker and
read/write your coordination file. Treat the whole URL like a password:
Don't paste it into screenshots, issues, chats, or commits.
Anyone with the URL is a peer in your mesh — share it only with agents/people you trust.
Rotating the token invalidates old URLs. To revoke access, change
AUTH_TOKENin Settings → Variables and Secrets and redeploy; every old…/mcp/<old-token>URL immediately returns404. Update the connector in claude.ai with the new URL.
GH_PAT is likewise a credential — scope it to only your coordination repo
with only Contents: Read and write, so a leak can't reach anything else.
Why the token is in the URL path, and what that costs you
This is a deliberate design choice, not an oversight. claude.ai custom
connectors do not reliably send custom headers, so an Authorization: header —
the obvious alternative — cannot be depended on. Putting the credential in the
path is what makes the connector work at all.
Be clear about the price, because it is not the same as a header:
URLs get recorded in places request bodies never do. Browser history, shell history, proxy and CDN access logs, crash reports, bug reports, screenshots, "copy link" buttons, and agent session transcripts. During the audit that produced this section, the connector URLs for these Workers were found in ~54 occurrences across 13 local session transcripts on a single machine — none pasted deliberately; they were simply part of the tool configuration an agent echoed back.
The Worker itself does not log it. Every log line records the route as
/mcp/***. The leak surface is everything around the Worker, which is exactly what you cannot audit.A leaked token makes the holder a full peer in your mesh — able to claim, force-claim over you, release your claims, and post to the mailbox — with no second factor and no per-caller identity. There is nothing to revoke except the token, and no log that will tell you who used it.
Practical guidance:
Rotate on a schedule, not just on suspicion — assume the URL has been recorded somewhere you don't control. Rotation is cheap: change
AUTH_TOKEN, update the connector.Rotate immediately if you've shared a terminal recording, a transcript, a screen capture, or a bug report from a machine where the connector is configured.
Use a long random token (32+ bytes, e.g.
openssl rand -hex 32). The comparison is constant-time in both content and length, so length is not observable — but entropy is still your only defence against guessing.If you ever get the chance to use a header or OAuth instead, take it. This tradeoff is forced by the client, not preferred.
Cross-transport walkthrough — two transports, one mesh
This is the whole point. The laptop and the phone coordinate through one file.
On the PC (local agentsync, Claude Code):
> agentsync claim --task "refactor auth" --touches src/auth --branch feature/auth
{"status": "claimed", ...} # writes claims["laptop"] on the agentsync branchOn the phone (claude.ai + agentsync-remote):
You: call survey
Claude: laptop is active — task "refactor auth", touches src/auth, branch feature/auth.
You: claim task "tidy auth helpers", touches src/auth/helpers.ts
Claude: blocked. Overlap with an active peer claim:
laptop — "refactor auth" — shared_files: ["src/auth/helpers.ts"]
Narrow `touches`, wait, or re-call with force=true.
You: mailbox "Taking src/auth/helpers.ts once you land the refactor — ok?" to "laptop"
Claude: posted.Back on the PC, the desktop agent (or you) reads the note via survey /
mailbox, answers it, and releases:
> agentsync mailbox "go for it, helpers are stable now"
> agentsync release --note "refactor landed"
{"status": "released"} # laptop's claim -> status "done"⚠️ Known gap: the mailbox is currently WRITE-ONLY across tiers
The "Back on the PC" step above does not work yet. This Worker's
mailbox()writes a top-levelnotes[]array intoclaims.json, and the local Python agentsync server has no concept ofnotes— it exposes nomailboxtool, and itssurvey()returns onlyme,branch,partnersandstale_claims. A note posted from the phone lands in the file correctly and is simply never surfaced to a desktop peer.That matters more than a missing feature normally would, because the repository-level agent instructions tell agents to raise judgment calls through this mailbox. An escape hatch that silently swallows the question is worse than no escape hatch: the agent believes it has asked and waits, or proceeds, on a question nobody will ever see.
Until the local side lands, read the mailbox from the remote peer (
mailboxwith nomessage, orsurvey), or readclaims.jsonon the coordination branch directly.The local-side change required (in the Python
agentsyncpackage — a separate repo, deliberately not modified here):
Parse and preserve
notes. The claims-file reader must round-trip the top-levelnoteskey. Today an unrecognised key risks being dropped on the next local write, which would delete remote peers' notes. Preserving unknown top-level keys is the minimum safe change and should land first, independently.Surface notes in
survey()— add anotesfield alongsidepartners/stale_claims, defaulting to[].Add a local
mailbox(message=None, to=None)tool mirroring this one: append{from, to, message, at}under the same compare-and-swap the local claim writes already use, and cap retention at the 200 most recent notes (this Worker evicts oldest-first at that bound — the two sides must agree, or they will fight over the file).The on-disk shape is already compatible in both directions: this Worker only emits
noteswhen non-empty, so aclaims.jsonwith no mailbox activity stays byte-shape-identical to pure-local output.
On the phone again:
You: claim task "tidy auth helpers", touches src/auth/helpers.ts
Claude: claimed. # laptop is "done" now, so it no longer blocks
You: (later) release note "helpers tidied"
Claude: released.Every one of those steps was a compare-and-swap against the same
claims.json on the same branch. The laptop never saw a remote peer; the
phone never saw a git repo. Same mesh.
Configuration
Non-secret config lives in wrangler.toml. Every var ships a
default so the Deploy button works with no edits; change REPO to your own repo.
Var | Default | Meaning |
|
|
|
|
| This peer's id in |
|
| The coordination branch. |
|
| The coordination file. |
Two secrets are set in the dashboard, never in the repo: AUTH_TOKEN (locks
the endpoint) and GH_PAT (GitHub Contents read/write on the coordination repo).
Point local agentsync and this Worker at the same REPO + BRANCH +
CLAIMS_PATH and they share one mesh.
Reliability
Coordination correctness under contention is measured, not asserted — the full
write-up is docs/RELIABILITY.md, reproducible with the
commands below.
49 / 49 automated tests green, covering five distinct CAS race scenarios and all three overlap-detection modes (exact · directory-containment · glob, each in both directions).
1000 simulated concurrent races (
test/stress-cas.test.ts, seeded0x5eed): 0 lost claims, 0 double-grants, and every race hit a real 409 retry — so the number isn't inflated by trivially-serialized runs.Fail-closed auth is tested — wrong token, unset
AUTH_TOKEN, and non-/mcppaths all 404; a missingGH_PATsurfaces a named error, not a silent failure.The MCP handshake is hardened —
initializemakes no network call, so it answers instantly even on a cold isolate; it negotiates the client's requested protocol version rather than rejecting a slightly-ahead client; and an unexpected throw anywhere becomes a well-formed JSON-RPC error, never a bare500a reconnecting client would read as a hard failure.Structured logs make failures visible — every request emits one line of JSON (
request/auth/handshake/tool_call/error, with the path token always redacted), so a dropped handshake or a slow tool call is one filter away in Cloudflare Workers Logs ([observability]is on inwrangler.toml).
Honest caveat: the thousand races are simulated in-process — GitHub's 409
compare-and-swap is reproduced by a fetch-mocked fake (test/helpers.ts),
not exercised over the live API. The results validate the Worker's coordination
logic — which is what runs in production — not GitHub's API, the network, or
real-world latency.
Maintainer / local development
The canonical repo (jarmstrong158/agentsync-remote) deploys via GitHub Actions
→ Wrangler (.github/workflows/deploy.yml):
every push to main runs the suite and only deploys if it's green. That workflow
is guarded to the canonical repo, so a fork you created with the Deploy button
never tries to run it — your fork redeploys through Workers Builds instead.
Local checks (no Cloudflare credentials needed):
npm install
npm test # vitest, fetch-mocked — no live GitHub calls
npm run typecheck
npx wrangler deploy --dry-run --outdir dist # bundle checkSee also
agentsync — the local transport (Claude Code on your machine). Same file, same rules; sibling transport.
DESIGN.md— the CAS translation, overlap semantics, and why the MCP handler is stateless and hand-rolled.docs/RELIABILITY.md— the measured reliability report: 49/49 tests, five CAS race scenarios, and 1000 seeded contention races.Deploy to Cloudflare buttons — Cloudflare's docs for the one-click deploy flow used above.
Related
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
- Flicense-quality-maintenanceEnables Claude to read, write, search, and manage Obsidian vault notes with Git-backed sync support for multi-device access and extensible AI workflows.Last updated2,001
- AlicenseBqualityDmaintenanceEnables GitHub project management from Claude, supporting issue creation, milestones, labels, changelog generation, and repository stats.Last updated8261MIT
- Flicense-qualityCmaintenanceEnables to interact with GitHub repositories directly from Claude, supporting actions like viewing repos, checking status, committing and pushing changes, and managing pull requests.Last updated
- Flicense-qualityDmaintenanceEnables Claude to access and manage GitHub repositories dynamically at runtime, including private repos, with tools for browsing files, searching code, and viewing commits, pull requests, and issues.Last updated1
Related MCP Connectors
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Live SEO workflow tools for Claude Code, Codex, and AI agents.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
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/jarmstrong158/agentsync-remote'
If you have feedback or need assistance with the MCP directory API, please join our Discord server