Skip to main content
ClaudeWave

Route6 MCP server (me.route6/netid) — give your AI agent its own internet identity: public IPv6 /64, DNS hostname, port forwarding, web fetch/search/scrape, private team mesh. 28 tools, free tier.

MCP ServersOfficial Registry0 stars0 forksUpdated 26d ago
Install in Claude Code / Claude Desktop
Method: pip / Python · route6
Claude Code CLI
claude mcp add mcp -- python -m route6
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp": {
      "command": "python",
      "args": ["-m", "route6"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install route6
Use cases

MCP Servers overview

<!-- mcp-name: me.route6/netid -->

<p align="center">
  <img src="https://route6.me/brand/route6-icon.png" alt="Route6" width="96" height="96">
</p>

<h1 align="center">Route6 — Agent Network Identity (MCP server)</h1>

<p align="center">
  <b>Give your AI agent its own internet identity — a real public IPv6, a hostname, and a private network to reach other agents.</b>
</p>

<p align="center">
  <a href="https://route6.me">route6.me</a> ·
  <a href="https://docs.route6.me">docs</a> ·
  <a href="https://route6.me/pricing">pricing</a> ·
  <a href="https://github.com/route6me/examples">examples</a>
</p>

---

Route6 is the networking layer for autonomous AI agents. Each agent gets a dedicated public IPv6 /64, a `*.on.route6.me` DNS hostname, inbound port forwarding with TLS, and private mesh networking with other agents — all controlled by the agent itself through **28 MCP tools**. Free tier, no card required.

**MCP registry:** `me.route6/netid` (remote server, domain-verified) · **Endpoint:** `https://gw.route6.me/mcp`

## Quick start

**1. Get an API key** — free account at [route6.me](https://route6.me) (no card).

**2. Connect your MCP client** to the remote server:

```json
{
  "mcpServers": {
    "route6": {
      "url": "https://gw.route6.me/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_ROUTE6_API_KEY"
      }
    }
  }
}
```

Transport is **streamable HTTP**; auth is the `Authorization: Bearer <key>` header. That's the whole setup — outbound HTTPS only, works behind any corporate firewall or NAT.

### Claude Code

```bash
claude mcp add --transport http route6 https://gw.route6.me/mcp \
  --header "Authorization: Bearer $ROUTE6_API_KEY"
```

Or install the full plugin (skill + tool reference): `/plugin marketplace add route6me/claude-plugin`

### Cursor

[![Add to Cursor](https://img.shields.io/badge/Add_to-Cursor-black?logo=cursor)](cursor://anysphere.cursor-deeplink/mcp/install?name=route6&config=eyJ1cmwiOiJodHRwczovL2d3LnJvdXRlNi5tZS9tY3AiLCJoZWFkZXJzIjp7IkF1dGhvcml6YXRpb24iOiJCZWFyZXIgWU9VUl9ST1VURTZfQVBJX0tFWSJ9fQ==)

One click, then replace `YOUR_ROUTE6_API_KEY` with your key. Or add the JSON block above to `~/.cursor/mcp.json`.

### Cline / Continue / any MCP client

Use the JSON block above (remote streamable-HTTP server + Bearer header). Detailed per-client guides: [docs.route6.me](https://docs.route6.me).

### Optional: local helper clients

```bash
npm i -g @route6/agent     # or: pip install route6
```

The lite clients add an inbound HTTP/2 tunnel (`route6 tunnel start`) so your agent can *receive* traffic at its hostname from behind NAT. The MCP endpoint stays `gw.route6.me/mcp` either way.

### Pro (Docker — full WireGuard tunnel)

`docker compose up` with the [`route6me/netid`](https://hub.docker.com/r/route6me/netid) image (compose file from the dashboard) puts a real routed /64 directly on the container's network stack. MCP endpoint becomes `http://localhost:3000/mcp`. Both paths expose the same tools.

## Tools (28 total — 7 free · 17 Agent · 28 Team)

| Tier | Tools |
|------|-------|
| **Free** (7) | `identity_get` · `identity_set_ipv6` · `identity_check_reputation` · `net_ping` · `net_traceroute` · `net_dns_resolve` · `web_fetch` |
| **Agent $9/mo** (+10) | `hostname_register` · `port_forward_create` · `port_forward_delete` · `port_forward_list` · `port_forward_tls` · `web_search` · `web_browse` · `scrape` · `smtp_allowlist` · `plan_upgrade` — plus `web_fetch` gains JS rendering + screenshots |
| **Team $29/mo** (+11) | `team_status` · `team_ping` · `team_chat` · `team_whiteboard` · `team_task` · `team_project_task` · `team_roles` · `team_capability` · `team_events` · `team_metrics` · `team_loop` |

What agents do with them:

- **Get a public identity** — a dedicated, routed (not NATed) public IPv6 /64 from Route6's own ASN and IP space; rotate or pin any address inside it instantly.
- **Be reachable** — register `my-agent.on.route6.me`, forward ports with real TLS; webhooks and OAuth callbacks that survive restarts (ngrok, but a permanent agent-native identity).
- **Fetch the web cleanly** — `web_fetch`/`web_search`/`scrape` from the agent's own IP; DNS64/NAT64 handles IPv4 sites transparently.
- **Form a private team mesh** — WireGuard mesh between agents plus a coordination layer: chat, shared KV whiteboard, task queues, roles, human-approved project tasks, and `team_loop` — a continuous receive loop so other agents (or humans in the dashboard) can push work to a connected agent in ~1s.

## Facts worth knowing

- **Free tier is permanent** — 7 tools, dedicated /64, 250 MB/mo, no card.
- **Own infrastructure** — Route6 runs its own ASN and provider-independent address space; the abuse contact, WHOIS, and rDNS are ours. SMTP is blocked by default (allowlist, capped). No traffic inspection, no content logging.
- **Not a proxy, not a VPN** — a network identity layer purpose-built for autonomous agents.
- Operated by M3T Projekt d.o.o. · [Privacy](https://route6.me/legal/privacy) · [Terms](https://route6.me/legal/terms)

---

*This repository is the registry listing page for the Route6 MCP server (the server itself is a hosted remote). Docs: [docs.route6.me](https://docs.route6.me) · Usage examples: [route6me/examples](https://github.com/route6me/examples)*
agent-infrastructureai-agentsclaudecursoripv6mcpmcp-servermodel-context-protocolnetworkingwebhooks

What people ask about mcp

What is route6me/mcp?

+

route6me/mcp is mcp servers for the Claude AI ecosystem. Route6 MCP server (me.route6/netid) — give your AI agent its own internet identity: public IPv6 /64, DNS hostname, port forwarding, web fetch/search/scrape, private team mesh. 28 tools, free tier. It has 0 GitHub stars and was last updated 26d ago.

How do I install mcp?

+

You can install mcp by cloning the repository (https://github.com/route6me/mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is route6me/mcp safe to use?

+

route6me/mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains route6me/mcp?

+

route6me/mcp is maintained by route6me. The last recorded GitHub activity is from 26d ago, with 0 open issues.

Are there alternatives to mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: route6me/mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/route6me-mcp)](https://claudewave.com/repo/route6me-mcp)
<a href="https://claudewave.com/repo/route6me-mcp"><img src="https://claudewave.com/api/badge/route6me-mcp" alt="Featured on ClaudeWave: route6me/mcp" width="320" height="64" /></a>

More MCP Servers

mcp alternatives