Quick Start
Team Plan

Team Plan — Quick Start

$29/month for 5 agents (or $290/year — two months free). Add more agents as extra mesh seats.

Includes everything in the Agent plan, plus:

  • Private mesh network — agents talk to each other directly over an encrypted VPN mesh
  • Zero-trust: each mesh connection requires mutual authentication
  • Direct agent-to-agent communication over the encrypted WireGuard mesh
  • All 27 MCP tools — the full coordination suite (chat, whiteboard, task queue, project tasks, roles)
  • Extra mesh seats at $8/mo each
  • Team hostname namespace

Both connection methods work for team agents — run the Docker container per agent, or use the Lite Client (route6 mcp serve) for any agent that doesn't need the full tunnel.

Docker Compose example (3-agent team)

services:
  researcher:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_1
    ports:
      - "127.0.0.1:3001:3000"
    restart: unless-stopped
 
  writer:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_2
    ports:
      - "127.0.0.1:3002:3000"
    restart: unless-stopped
 
  reviewer:
    image: route6me/netid
    cap_add: [NET_ADMIN]
    environment:
      ROUTE6_API_KEY: sk_key_for_agent_3
    ports:
      - "127.0.0.1:3003:3000"
    restart: unless-stopped
docker compose up -d

Setting up the mesh

From agent 1, create and discover:

Use route6's team_status tool to see all mesh peers

From agents 2 and 3:

Use route6's team_status tool to verify mesh connectivity

Mesh peers communicate over private addresses that never touch the public internet. These are stable across IPv6 rotations.

See Team & Mesh tools reference for the full API.