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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

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
Why Your AI Agents Are Still Bottlenecked by HTTP (And Wh...
William Bake · 2026-05-11 · via DEV Community

William Baker

You've wired up your AI agent to a dozen APIs. It can search the web, pull database records, call external services. It looks like a capable system on paper.

But watch what it actually does at runtime.

It fires off an HTTP request. Waits for DNS. Does the TLS handshake. Gets back HTML or JSON designed for a human interface. Parses it with fragile selectors or regex. Retries when the schema changed. Does it again, and again, for every piece of data it needs.

This is an agent running on infrastructure that was never designed for it.

The Numbers Tell the Story

For every search a human makes, an AI agent performs 20-50x more requests. Scraping pages, parsing output, retrying failures, re-reading the same content another agent already processed an hour ago.

HTTP was designed in 1991 for a browser rendering documents for human eyes. The entire stack above TCP is optimized for that use case: DNS for human-readable names, TLS for trust anchors humans can't verify themselves, HTML and JSON for formats humans can read.

Agents can handle binary wire formats. They don't need human-readable naming. They don't need a certificate authority vouching for a domain. They need fast, authenticated, direct connections to peers that have the data they need.

What the Stack Actually Looks Like Today

When you deploy an agent using any modern framework, it lives at L7. It makes HTTP calls. Every call traverses:

  • DNS lookup (100-300ms on cold cache)
  • TCP three-way handshake
  • TLS negotiation (another round trip)
  • HTTP request/response overhead
  • JSON parsing (often hundreds of milliseconds for large payloads)

For a human loading a page once, this is acceptable. For an agent doing 10,000 requests per hour, each one of these is waste.

More importantly: when your agent finishes a task, the result disappears. Another agent running the same query 20 minutes later burns the same tokens, makes the same requests, waits the same latencies. There's no shared state. There's no agent memory at the network layer.

The Session Layer Gap

The OSI model has seven layers. Agents today live at L7 (application) and ride on L3/L4 (IP and TCP). Layer 5, the session layer, is largely unused on the modern internet. TLS occupies part of it. Everything else is handled by application logic.

This is where a native agent network belongs.

A session layer for agents provides:

  • Addressing: Each agent gets a stable identity and address, independent of IP. No DNS. Direct routing.
  • Encrypted tunnels: P2P encrypted channels between agents, without a central server in the path.
  • Discovery: Agents find peers with relevant capabilities without going through a search engine or a broker.
  • Persistence: Results shared at the network layer are available to any agent that asks, not just the one that generated them.

What This Looks Like in Practice

Pilot Protocol is one implementation of this idea. It sits at L5, above UDP/TCP and below your application framework. Agents install it with a single command, get a 48-bit address, and can immediately connect to ~176,000 peers on the network.

$ curl -fsSL https://pilotprotocol.network/install.sh | sh
$ pilotctl daemon start --hostname my-agent
Daemon running (pid 24817)
Address: 0:A91F.0000.7C2E
Hostname: my-agent

$ pilotctl ping agent-alpha
✓ reply from 0:4B2E.0000.1A3D · 38ms

Enter fullscreen mode Exit fullscreen mode

No SDK. No API key. The agent is online.

At the network level, agents self-organize into groups by domain: travel, finance, security, research. A query goes to the agent best positioned to answer it, not to a general-purpose search engine. Average query time: 12 seconds on the native network vs. 51 seconds via HTTP scraping.

The protocol itself uses X25519 for key exchange, AES-256-GCM for encryption per tunnel, and Ed25519 for identity. NAT traversal happens via STUN and hole-punching, with relay fallback for symmetric NATs. It was submitted as an IETF Internet-Draft.

Where MCP Fits In

MCP (Model Context Protocol) has become the dominant standard for agent-to-tool communication. 97 million monthly SDK downloads. Adopted by every major AI provider.

MCP solves a real problem: standardizing how agents invoke tools and retrieve context. But MCP is L7. It assumes an underlying transport. It doesn't solve the addressing, discovery, or tunnel establishment problems.

Giving an MCP server a network identity changes what it can do. It can be discovered by other agents without central registration. It can maintain persistent tunnels instead of per-request connections. Multiple agents can route to it based on capability rather than a hardcoded URL.

This is roughly analogous to the difference between an HTTP server and a service mesh. The MCP server still exists. It just gets a proper network presence underneath.

The Hive Mind Property

The part that gets interesting at scale: when 176,000 agents share a network layer, results propagate. An agent that answers a query about SEC filings shares that answer with its network neighbors. The next agent to ask gets the cached result, not the raw API call.

This is not a feature of any individual agent. It's a property of the network. Each new agent that joins makes the network smarter, not just larger.

Current trajectory on the Pilot network: 57% growth in the past 7 days.

Practical Next Steps

If you're building agent systems today, the relevant questions are:

  1. How are your agents addressing each other? Hardcoded URLs? Service discovery? Something else?
  2. What happens when the API your agent depends on changes its schema?
  3. Are your agents repeating work other agents in your fleet already did?
  4. How do agents in your system authenticate to each other?

A session-layer network doesn't replace your agent framework or your MCP servers. It goes underneath them and solves the transport problems that application-layer code is currently papering over.

The web was built in 1991 for humans. The infrastructure for agents is being built now.

Try it: Install Pilot in one line | Read the IETF draft | Browse 350+ service agents