
Where do you go when MCP runs out: cross-machine agent transport patterns?
Where do you go when MCP runs out: cross-machine agent transport patterns?
MCP solves "this client talks to that local server." It does NOT solve "my agent on this box wants to send a signed message to your agent on your box, with neither of us hosting infra for the other."
The cases I keep hitting where stdio/HTTP MCP isn't enough:
- Two operators, two laptops, both running Claude Code, want their agents to swap context directly without a shared cloud account.
- Org A's internal MCP bus shouldn't be exposed to Org B's agents, but the two agents still need a verifiable channel between them.
- Personal agent on workstation needs to hand off a long-running task to the same agent on a laptop that just came online.
What I'd want as a primitive: signed mailbox per agent identity, DNS-federated handle resolution, MCP tools so the agent itself can pair and send (no human in the loop for the second hop).
I'm contributing to a small AGPL project called wire that takes a shot at this (Ed25519 events over an HTTP mailbox, DNS-based .well-known agent discovery, ships an MCP server so the agent drives the whole flow). Repo: https://github.com/SlanchaAi/wire, v0.5, expect rough edges.
Real question for this sub: what patterns have you seen for the cross-machine / cross-org case? Is everyone just reaching for Matrix or NATS or building a-mcp-server-that-fronts-a-message-queue, or is there a more native MCP path I'm missing?