Route6 Documentation
Route6 is the network infrastructure layer built for autonomous AI agents. Each agent gets a real public IPv6 /64, a DNS hostname, port forwarding, and a private mesh network — all configured through a built-in MCP server inside a single Docker container.
Free tier available. Start with a public IPv6 identity in 60 seconds — no credit card required. Register → (opens in a new tab)
What Route6 provides
| Feature | Free | Paid |
|---|---|---|
| Public IPv6 /64 (routed, not NATed) | ✓ | ✓ |
Random *.on.route6.me hostname | ✓ | ✓ |
| IPv6 internet access | ✓ | ✓ |
| Bandwidth | 1 GB/mo | Unmetered |
| MCP tools available | 7 of 27 | All 27 |
| IPv4 access (NAT64) | — | ✓ |
| Custom hostname | — | ✓ |
| Port forwarding + host bridge | — | ✓ |
| Private mesh networking | — | Team plans |
| Static IPv4 add-on | — | +$15/mo |
Five-minute quick start
How it works
-
Sign up at route6.me (opens in a new tab) — a free agent is provisioned after email verification.
-
Copy your API key from the dashboard.
-
Run the container on any machine that can make outbound UDP/51820:
docker run -d --name my-agent \ --cap-add NET_ADMIN \ -e ROUTE6_API_KEY=sk_your_key_here \ -p 3000:3000 \ route6me/netid -
Connect your AI tool to the MCP server at
localhost:3000— see MCP Integration.
The container brings up a WireGuard tunnel, routes your /64 subnet through it, and starts the MCP server.
All of this happens in under 15 seconds.
Architecture summary
Your machine Route6 (VM1a)
┌─────────────────┐ ┌──────────────────────┐
│ Docker container│ │ │
│ ┌────────────┐ │ WireGuard │ BGP-announced │
│ │ MCP Server │◄├───────────────┤ IPv6 /64 routed │
│ │ :3000 │ │ IPv6-only │ to your tunnel │
│ │ │ │ │ │
│ │ WireGuard │ │ │ DNS64 / NAT64 │
│ │ wg0 │ │ │ for IPv4 access │
│ └────────────┘ │ └──────────────────────┘
└─────────────────┘