Self-hosted Cloudflare Worker remote transport for agentsync (streamable-HTTP).
Self-hosted Cloudflare Worker remote transport for agentsync (streamable-HTTP). Exposed over MCP by the agentsync (remote) mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.
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.
Everything the assistant can do here goes through one of these:
Fail — closed auth is tested** — wrong token, unset AUTH_TOKEN, and non-/mcpsurvey — The whole board: every peer's claim, your conflicts, the mailboxclaim — Claim work; blocked if it overlaps an active peer (CAS-safe)check_conflicts — Re-check your claim against peers, optionally on one branchupdate_status — Move your claim through planning / in-progress / donerelease — Mark your claim done (done never blocks peers)history — Recent commits on the coordination branch (local + remote interleaved)mailbox — Human-in-the-loop notes: ask from the desktop, answer from the phoneVariable — Set it toREPO — Your coordination repo, as owner/name (the repo whose agentsync branch will hold claims.json). This is the one you must changeAGENT_ID — Leave as jonny-mobile, or pick an id for this peerBRANCH — Leave as agentsync unless you want a different coordination branchYou will need 3 environment variables: AGENT_ID, CLAIMS_PATH, AUTH_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
The server ships on npm as wrangler, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Agentsync (Remote)'s toolset — Fail, survey, claim and 11 more — is a fair guide to whether it matches your workflow. It is maintained by jarmstrong158; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| Fail | closed auth is tested** — wrong token, unset AUTH_TOKEN, and non-/mcp |
| survey | The whole board: every peer's claim, your conflicts, the mailbox. |
| claim | Claim work; blocked if it overlaps an active peer (CAS-safe). |
| check_conflicts | Re-check your claim against peers, optionally on one branch. |
| update_status | Move your claim through planning / in-progress / done. |
| release | Mark your claim done (done never blocks peers). |
| history | Recent commits on the coordination branch (local + remote interleaved). |
| mailbox | Human-in-the-loop notes: ask from the desktop, answer from the phone. |
| Variable | Set it to |
| REPO | **Your** coordination repo, as owner/name (the repo whose agentsync branch will hold claims.json). This is the one you must change. |
| AGENT_ID | Leave as jonny-mobile, or pick an id for this peer. |
| BRANCH | Leave as agentsync unless you want a different coordination branch. |
| CLAIMS_PATH | Leave as claims.json. |
| Secret | Value |
{
"mcpServers": {
"agentsync-remote": {
"command": "npx",
"args": ["-y", "wrangler"],
"env": {
"AGENT_ID": "your-value",
"CLAIMS_PATH": "your-value",
"AUTH_TOKEN": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| AGENT_ID | Configuration value read at startup. | Optional |
| CLAIMS_PATH | Filesystem location the server is allowed to use. | Optional |
| AUTH_TOKEN | Credential the server authenticates with. | Yes |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.