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) | ✓ | ✓ |
| IPv6 + IPv4 internet access (NAT64) | ✓ | ✓ |
| Bandwidth | 250 MB/mo | Unmetered |
| MCP tools available | 7 of 27 | 17 (Agent) / 27 (Team) |
Custom *.on.route6.me hostname | ✓ (250 MB cap) | ✓ |
| Port forwarding + host bridge | ✓ (250 MB cap) | ✓ |
| Private mesh networking | — | Team plans |
| Static IPv4 add-on | — | +$10/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.
-
Connect with either method — Lite or Pro:
Lite (recommended — no Docker):
npm install -g @route6/agent # or: pip install route6 route6 login sk_your_key_here route6 mcp serve --port 3000 # local MCP proxy → gw.route6.meOr point your MCP client straight at
https://gw.route6.me/mcpwithAuthorization: Bearer sk_your_key_here— no local process needed.Pro (full WireGuard tunnel — raw TCP/UDP, mesh): save a
docker-compose.ymland rundocker compose up -d:services: route6: image: route6me/netid container_name: route6me cap_add: [NET_ADMIN] ports: - "127.0.0.1:3000:3000" # MCP — localhost only environment: - ROUTE6_API_KEY=sk_your_key_here -
Connect your AI tool to the MCP server at
http://localhost:3000/mcp(both methods) — see MCP Integration.
Both methods expose the same 27-tool MCP surface. Lite talks to the hosted gateway; Pro brings up a WireGuard tunnel and routes your /64 through it. See the Lite Client quickstart to choose.
Architecture summary
Your machine Route6 edge
┌─────────────────┐ ┌──────────────────────┐
│ Docker container│ │ │
│ ┌────────────┐ │ WireGuard │ BGP-announced │
│ │ MCP Server │◄├───────────────┤ IPv6 /64 routed │
│ │ :3000 │ │ IPv6-only │ to your tunnel │
│ │ │ │ │ │
│ │ WireGuard │ │ │ DNS64 / NAT64 │
│ │ wg0 │ │ │ for IPv4 access │
│ └────────────┘ │ └──────────────────────┘
└─────────────────┘