惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
雷峰网
雷峰网
量子位
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
T
Tailwind CSS Blog
月光博客
月光博客
博客园 - 【当耐特】
博客园_首页
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
The Cloudflare Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
人人都是产品经理
人人都是产品经理
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your MCP Server Has No Network Identity. Here's Why That'...
William Bake · 2026-05-11 · via DEV Community

William Baker

MCP (Model Context Protocol) crossed 97 million monthly SDK downloads. Every major AI provider adopted it. It solved a real problem: how do agents invoke tools and retrieve context in a standardized way?

But MCP is a protocol for what agents can do. It says nothing about where they are or how they find each other.

Your MCP server lives at a URL. That URL is hardcoded in your agent's config. If it changes, your agent breaks. If you want another agent to discover your server's capabilities, you need a registry, a service mesh, or a human to copy and paste the URL.

This is the network identity problem for MCP, and it's more tractable than it looks.

What MCP Actually Does (and Doesn't Do)

MCP standardizes the tool-calling layer. An agent sends a request, the MCP server handles tool invocation, and returns structured results. The protocol defines:

  • Tool schemas (what parameters each tool accepts)
  • Resource definitions (what data sources are available)
  • Request/response format

It does not define:

  • How agents discover MCP servers without prior knowledge
  • How MCP servers maintain stable identities across IP changes
  • How multiple agents route to the same MCP server based on capability
  • How MCP servers establish encrypted tunnels to requesting agents

These are network problems, and MCP isn't a network protocol.

The Hardcoded URL Problem

Most MCP deployments today look like this:

{
  "mcpServers": {
    "my-tool-server": {
      "url": "https://api.mycompany.com/mcp",
      "apiKey": "sk-..."
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

This works for a single agent with a fixed configuration. It breaks down when:

  • The server moves to a new host
  • You want to run multiple instances behind a load balancer
  • Another agent outside your org wants to use the same tool
  • You want to discover all MCP servers with a given capability type
  • You're building a marketplace of tools that agents can discover dynamically

The current solution is to build a registry. A centralized service that maps tool names to URLs. But now you have a new dependency: the registry has to be available, consistent, and kept up to date. You've reintroduced the single point of failure you were trying to avoid.

What a Network Identity Gives an MCP Server

Pilot Protocol gives MCP servers a stable address at the session layer (L5), below HTTP, above UDP/TCP. Instead of a URL, the server gets an address like:

0:A91F.0000.7C2E

Enter fullscreen mode Exit fullscreen mode

This address is independent of IP. The server can move, scale horizontally, or restart. The address stays the same. Other agents route to the address, not to a specific host.

In practice, this means:

Discovery without a registry: Agents can find MCP servers by capability type. A server tagged as a finance tool is discoverable by any agent on the network querying for finance-related capabilities. No hardcoded URL required.

Encrypted tunnels by default: Pilot uses X25519 key exchange and AES-256-GCM per connection. The MCP server doesn't implement TLS or manage certificates. The network layer handles it.

NAT traversal: MCP servers behind corporate firewalls or home networks are routable without port forwarding. Hole-punching handles direct P2P where possible; relay fallback handles symmetric NATs.

Stable addressing for the agent economy: When tools are addressable at the network layer, you can build agent workflows that discover and invoke tools dynamically, without human configuration at each step.

Setting It Up

Giving an existing MCP server a Pilot address takes one command:

$ curl -fsSL https://pilotprotocol.network/install.sh | sh
$ pilotctl daemon start --hostname my-mcp-server --tags mcp,finance
Daemon running (pid 24817)
Address: 0:B331.0000.4D12
Hostname: my-mcp-server
Tags: mcp, finance

Enter fullscreen mode Exit fullscreen mode

The MCP server continues running as normal. Pilot runs alongside it, handling network addressing and tunnel establishment. Agents on the Pilot network can now discover my-mcp-server by querying for mcp or finance tagged nodes.

For agents that want to connect:

$ pilotctl connect my-mcp-server
Tunnel established · 0:B331.0000.4D12 · 22ms

Enter fullscreen mode Exit fullscreen mode

The MCP protocol runs over the tunnel. The tool call format doesn't change. The network layer changes underneath it.

The Broader Picture: MCP + A2A + Transport

The agent protocol stack in 2026 has three layers:

  • MCP (L7): Agent-to-tool communication. Tool invocation, context retrieval.
  • A2A (L7): Agent-to-agent coordination. Task delegation, capability negotiation.
  • Transport (L5): Addressing, discovery, encrypted tunnels, NAT traversal.

MCP and A2A both assume an underlying transport. Both currently default to HTTP. HTTP works, but it carries the full overhead of a human-facing protocol: DNS, TLS via public CAs, JSON serialization, and no native addressing for agents.

A session-layer protocol handles the transport problems once, at the network level, so MCP and A2A don't have to keep reinventing it.

Practical Impact

350+ specialized service agents on the Pilot network are already addressable this way. An agent that needs current FX rates connects to a finance-tagged peer. An agent checking SSL certificate transparency hits the security group. No configuration. No registry call. Network-layer discovery, direct connection, structured data back.

Average response time: 12 seconds for a data retrieval query routed through the Pilot network vs. 51 seconds scraping the same data over HTTP.

If you're running MCP servers in production and want to make them discoverable to the broader agent ecosystem without maintaining a central registry, this is the path.


Get started: Give your MCP server a network identity | Install Pilot | Browse service agents