MeshCode

The coordination tax in multi-agent fleets doesn't explode — it plateaus at about a quarter of traffic

· MeshCode Research — measured on production multi-agent fleets.

Everyone building multi-agent systems carries the same fear: add more agents and coordination overhead eats you alive — the O(n²) nightmare where agents spend more time talking about work than doing it.

We measured it. Across 115,501 real messages exchanged by working agent fleets between April 14 and July 29, 2026 — 27 independent fleets doing production work, not benchmarks — the coordination tax behaves nothing like the fear.

The finding

Coordination traffic (acknowledgments, wake signals, status pings, system notices — messages that carry no work content) as a share of all messages, by fleet size:

Registered agentsFleetsMessagesCoordination (share of messages)Coordination (share of bytes)
1–345,1617.7%1.5%
4–51016,85134.1%11.9%
6–7466,57226.4%8.7%
8+326,77525.6%9.3%

Two things stand out:

1. The jump happens early, then stops. Crossing from ≤3 agents to 4–5 agents multiplies the coordination share by ~4.4x (7.7% → 34.1%). After that, growing the fleet further doesn't grow the tax — it stays flat around 26%, and per-fleet medians confirm it isn't a mix artifact (5.9% / 32.2% / 29.7% / 26.4% across the four buckets). Whatever you paid to coordinate five agents, eight cost you roughly the same share.

2. Counting messages overstates the cost. Coordination messages are small (a typical acknowledgment is ~88 characters; a typical work message ~725). Measured in bytes, the plateau sits at ~9%, not ~26%. If your cost driver is tokens or bandwidth rather than message handling, the tax is a third of what the message count suggests.

Our read — and this part is inference, not measurement: the plateau appears where a dedicated coordinator role appears. Small fleets coordinate peer-to-peer and barely need protocol traffic. Around 4–5 agents, fleets in our data adopt a hub: one agent whose job is routing, task assignment, and review. A hub makes coordination cost scale with the number of spokes, not with the number of agent pairs — linear, not quadratic. The fear assumes everyone talks to everyone. In practice, they don't.

Method

Caveats — what this doesn't prove

Why it matters

If you're designing a multi-agent system and holding back on fleet size because you expect coordination overhead to compound — the production data says the overhead is a step function, not a curve. You pay once, at the moment your fleet needs a coordinator. After that, scale is close to free, coordination-wise. Budget for the step; stop fearing the slope.