The Complete Agentic Web Standards Map 2026: WebMCP, MCP, LLMFeed, Cloudflare, and Beyond
Every protocol, every layer, every trade-off โ mapped and compared

The Complete Agentic Web Standards Map 2026: WebMCP, MCP, LLMFeed, Cloudflare, and Beyond
The agentic web is no longer a concept. It is a protocol war.
In the span of 15 months (November 2024 to February 2026), the industry went from a single protocol (Anthropic's MCP) to an ecosystem of overlapping, complementary, and occasionally competing standards โ each solving a different piece of the puzzle.
If you are a developer, architect, or technical decision-maker, you need a map. This is that map.
The Agentic Web Stack: Five Layers
Every standard in the agentic web fits into one of five layers. Understanding these layers is the key to understanding which standards matter for your use case.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Layer 5: AGENT-TO-AGENT COMMUNICATION โ โ โโโ Google A2A (Agent-to-Agent Protocol) โ โ โโโ IETF Agent Network Protocol (ANP) โ โ โโโ Agent Economy feeds (LLMFeed) โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ Layer 4: EXECUTION (Tool Calling) โ โ โโโ WebMCP โ browser-side (navigator.modelContext) โ โ โโโ Anthropic MCP โ server-side (JSON-RPC) โ โ โโโ Microsoft NLWeb โ natural language queries โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ Layer 3: TRUST & VERIFICATION โ โ โโโ LLMFeed Ed25519 signatures โ โ โโโ LLMCA certification authority โ โ โโโ Content-Signal consent headers (Cloudflare) โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ Layer 2: CONTENT DELIVERY โ โ โโโ Cloudflare Markdown for Agents โ โ โโโ LLMFeed export feeds โ โ โโโ llms.txt โ โ โโโ Schema.org / JSON-LD structured data โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ Layer 1: DISCOVERY โ โ โโโ .well-known/mcp.json (MCP spec PR #2127) โ โ โโโ LLMFeed llm-index feeds โ โ โโโ robots.txt / sitemap.xml (legacy) โ โ โโโ DNS-based discovery (emerging) โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
No single standard covers all five layers. The complete agentic web requires multiple standards working together.
Standard-by-Standard Analysis
1. Anthropic MCP (Model Context Protocol)
The foundation layer. Anthropic released MCP in November 2024 as an open protocol for connecting AI models to external tools, data sources, and services.
| Property | Value |
|---|---|
| Layer | Execution (server-side) |
| Developed by | Anthropic |
| Transport | JSON-RPC over HTTP, SSE, WebSocket |
| Where it runs | Backend server (Node.js, Python) |
| Authentication | OAuth2, API keys, mTLS |
| Status | Broadly adopted (spec v2025-11-25) |
| Key adopters | OpenAI (ChatGPT Apps SDK), Claude, Cursor, Windsurf |
What it does well:
- Standardized tool-calling protocol across AI platforms
- Rich capability advertisement (tools, resources, prompts, sampling)
- Cross-platform adoption (Anthropic, OpenAI, Google all support it)
- Strong developer tooling ecosystem
What it does not solve:
- Web-native discovery (how do agents find MCP servers?)
- Static hosting (requires a running server process)
- Cryptographic trust (no built-in signature verification)
- Browser-side interaction (designed for backends)
When to use it: Backend automation, API integrations, data pipelines, headless agent workflows.
2. WebMCP (Web Model Context Protocol)
The browser-native revolution. Shipped in Chrome 146 on February 12, 2026 as a W3C Community Group standard.
| Property | Value |
|---|---|
| Layer | Execution (browser-side) |
| Developed by | Google + Microsoft (W3C) |
| API | |
| Where it runs | Client-side JavaScript (HTTPS required) |
| Authentication | Inherits user session |
| Status | Chrome 146 Canary (behind flag) |
| Performance | 89% token improvement over screenshots |
What it does well:
- Eliminates screenshot-based agent interaction
- Reuses existing frontend code (tools call your existing functions)
- Human-in-the-loop by design ()
requestUserInteraction() - Declarative mode auto-exposes HTML forms as tools
- 98% task accuracy, 67% computational overhead reduction
What it does not solve:
- Discovery (agents must load the page to find tools)
- Trust (no signature verification, prompt injection risk)
- Cross-browser support (Chrome-only, flag-gated)
- Headless execution (designed for human-present scenarios)
- Static site support (requires JavaScript execution)
When to use it: E-commerce, booking, SaaS dashboards, any site where users and agents interact with the same UI.
3. LLMFeed + WellKnownMCP
The discovery and trust layer. Developed by the WellKnownMCP project since 2025. A static-file, trust-first specification for making websites discoverable and verifiable by AI agents.
| Property | Value |
|---|---|
| Layer | Discovery + Trust + Content Delivery |
| Developed by | WellKnownMCP community |
| Format | JSON feeds at |
| Where it runs | Static files (no server required) |
| Authentication | Ed25519 signatures + LLMCA certification |
| Status | Spec v2.1, 50+ implementations |
| Feed types | 13 specialized types (mcp, export, capabilities, pricing...) |
What it does well:
- Zero-server discovery: Static JSON files work on GitHub Pages, CDNs, Jamstack
- Cryptographic trust: Ed25519 signatures verify content integrity and authenticity
- Third-party certification: LLMCA provides independent verification
- Rich semantics: 13 feed types cover capabilities, pricing, credentials, sessions, prompts
- Multi-LLM compatibility: Works with Claude, ChatGPT, Gemini, any LLM
- 30-second agent training: Copy-paste training prompts for any LLM
What it does not solve:
- Real-time interaction (feeds are static, not live tools)
- Browser-native integration (no API)
navigator - Big-tech backing (community-driven, not Google/Microsoft)
- Mainstream adoption scale (growing but niche)
When to use it: Discovery, trust verification, static sites, enterprise compliance, multi-agent architectures, any site that needs agent-readable metadata without running servers.
4. Cloudflare Markdown for Agents
The content delivery shortcut. Launched February 12, 2026. Automatic HTML-to-markdown conversion at CDN scale.
| Property | Value |
|---|---|
| Layer | Content Delivery |
| Developed by | Cloudflare |
| Mechanism | HTTP content negotiation ( |
| Where it runs | CDN edge (zero code changes) |
| Token savings | ~80% vs raw HTML |
| Scale | ~20% of all web traffic |
What it does well:
- Zero-effort adoption: Toggle a switch, your site is agent-readable
- Massive scale: 20% of the web, instantly available
- Token efficiency: 80% reduction (16,180 tokens to 3,150 per page)
- Consent signals: header with
Content-Signal,ai-train,searchflagsai-input - Token count header: for context window budgeting
x-markdown-tokens
What it does not solve:
- Discovery (agents must already know the URL)
- Tool interaction (read-only content, no actions)
- Trust verification (no cryptographic guarantees)
- Semantic structure (flat markdown, no capabilities/pricing metadata)
- Non-Cloudflare sites (requires Cloudflare CDN, Pro+ plan)
When to use it: Content-heavy sites behind Cloudflare that want immediate AI readability with zero development effort.
5. llms.txt
The early experiment. Proposed in 2025 as a markdown file at
/llms.txt| Property | Value |
|---|---|
| Layer | Content Delivery (manual) |
| Developed by | Community initiative |
| Format | Markdown file at |
| Adoption | ~10% of 300K domains analyzed |
| Effectiveness | No correlation with AI citations (research) |
| Google support | Explicitly none |
The honest assessment:
llms.txt had the right intuition โ AI models need structured content summaries. But adoption stalled because:
- Manual creation burden on publishers
- No confirmed support from any major LLM provider
- Google explicitly stated it does not support it
- Research showed removing the llms.txt variable actually improved prediction models
- Cloudflare's automated approach solves the same problem with zero friction
When to use it: Low-effort hedge. Takes 30 minutes to create. May help with some AI tools. No downside, but do not rely on it as a strategy.
6. Google A2A (Agent-to-Agent Protocol)
The multi-agent communication layer. Google's protocol for agents to discover, authenticate, and communicate with each other.
| Property | Value |
|---|---|
| Layer | Agent-to-Agent Communication |
| Developed by | |
| Focus | Cross-platform agent orchestration |
| Status | Active development |
| Relationship to MCP | Complementary (A2A = agent-agent, MCP = agent-tool) |
What it does: Enables multi-agent workflows where specialized agents collaborate โ one agent discovers services, another negotiates, a third executes. A2A provides the communication protocol between these agents.
Relationship to other standards: A2A sits above MCP and WebMCP. Agents that use A2A to communicate with each other still use MCP/WebMCP to interact with tools and services.
7. Microsoft NLWeb
The natural language query layer. Announced at Build 2025, NLWeb turns any website into an AI-queryable service.
| Property | Value |
|---|---|
| Layer | Execution (question-answer) |
| Developed by | Microsoft (R.V. Guha) |
| Core method | |
| Foundation | Schema.org + RSS (100M+ websites) |
| MCP integration | Every NLWeb instance is also an MCP server |
What it does: Provides a single
askPositioning: NLWeb is more limited than MCP (one method vs. arbitrary tools) but far easier to adopt for sites already using Schema.org structured data.
8. .well-known/mcp.json (Discovery Standard)
The convergence point. Originally proposed by WellKnownMCP, now advancing through the official MCP specification.
| Property | Value |
|---|---|
| Layer | Discovery |
| Origin | WellKnownMCP community โ MCP spec PR #2127 |
| Format | JSON at |
| Production validation | Shopify (millions of storefronts), Smithery (thousands of servers) |
| Status | Active specification development |
What it provides:
json{ "name": "Example Service", "version": "1.0.0", "description": "Product search and ordering", "endpoints": { "streamable_http": "https://example.com/mcp", "sse": "https://example.com/mcp/sse" }, "capabilities": { "tools": true, "resources": true, "prompts": false }, "authentication": { "type": "oauth2", "authorization_url": "https://example.com/oauth/authorize" } }
This is the "sitemap.xml for AI agents" โ a standardized file that tells agents what is available, how to connect, and what authentication is required.
The Comparison Matrix
By Function
| Standard | Discovery | Content | Tools | Trust | Agent-Agent |
|---|---|---|---|---|---|
| Anthropic MCP | - | - | Server-side | - | - |
| WebMCP | - | - | Browser-side | - | - |
| LLMFeed | llm-index | export feeds | capabilities | Ed25519 + LLMCA | agent-economy |
| .well-known/mcp.json | Metadata | - | - | - | - |
| Cloudflare Markdown | - | Auto-convert | - | Content-Signal | - |
| llms.txt | - | Manual summary | - | - | - |
| A2A | Agent cards | - | - | Auth | Communication |
| NLWeb | - | Schema.org | ask() | - | - |
By Adoption Effort
| Standard | Effort Level | Requirements |
|---|---|---|
| Cloudflare Markdown | Minimal (toggle) | Cloudflare Pro+ plan |
| llms.txt | Low (30 min) | Text editor |
| .well-known/mcp.json | Low (1 hour) | Static file hosting |
| LLMFeed | Medium (1-2 days) | JSON creation + optional signing |
| WebMCP | Medium (2-5 days) | JavaScript development |
| Anthropic MCP | High (1-2 weeks) | Server development + hosting |
| NLWeb | High (1-2 weeks) | Server development + Schema.org |
| A2A | High (2+ weeks) | Agent platform development |
By Backing and Maturity
| Standard | Backing | Maturity | Browser Support |
|---|---|---|---|
| Anthropic MCP | Anthropic + ecosystem | Production | N/A (server) |
| WebMCP | Google + Microsoft (W3C) | Early preview | Chrome 146 (flag) |
| Cloudflare Markdown | Cloudflare | Beta | N/A (CDN) |
| LLMFeed | Community (WellKnownMCP) | Spec v2.1 | N/A (static files) |
| .well-known/mcp.json | Community โ MCP official | Draft (PR #2127) | N/A (static files) |
| llms.txt | Community | Stalled | N/A (static file) |
| A2A | Development | N/A (server) | |
| NLWeb | Microsoft | Open source | N/A (server) |
Decision Framework: What Should You Implement?
Tier 1: Implement Now (Everyone)
- Cloudflare Markdown for Agents โ If you are behind Cloudflare, enable it today
- โ 1 hour to create, makes your services discoverable
.well-known/mcp.json - Schema.org structured data โ If you do not have it, add it (foundation for NLWeb, search, agents)
Tier 2: Implement Soon (Active Agent Strategy)
- Anthropic MCP server โ If you have APIs that agents should access
- LLMFeed feeds โ If you need discovery, trust, or serve static sites
- WebMCP tools โ Start experimenting in Chrome Canary now, ready for when it ships default-on
Tier 3: Monitor and Prepare
- A2A integration โ When multi-agent workflows become common in your industry
- NLWeb โ If you are heavily invested in Schema.org and want Microsoft ecosystem support
- llms.txt โ Low-effort hedge, create one but do not depend on it
The Market Numbers Behind the Standards Race
The agentic web is not a technology experiment. It is an economic transformation:
- $7.8 billion โ $52 billion projected agentic AI market growth by 2030
- 40% of enterprise applications will embed AI agents by end of 2026 (Gartner)
- 89% token efficiency improvement with WebMCP over screenshot-based interaction
- 80% token reduction with Cloudflare Markdown over raw HTML
- 250 participants at the IETF side meeting on agentic AI standards
- 20% of all web traffic flows through Cloudflare (Markdown for Agents reach)
- 10.13% of websites have llms.txt (and it shows no impact on AI citations)
The standards that survive will be those backed by either:
- Infrastructure scale (Cloudflare, Chrome)
- Ecosystem adoption (MCP's cross-platform support)
- Unique value (LLMFeed's trust layer, which no one else provides)
The Convergence Thesis: Why All Roads Lead to a Unified Stack
Despite the apparent fragmentation, the standards landscape is converging. Here is why:
MCP is becoming the universal protocol. OpenAI adopted it. Google builds on top of it (WebMCP extends MCP concepts to the browser). IETF is standardizing agent communication. MCP's JSON-RPC foundation is the common language.
Discovery is standardizing around .well-known/
Content delivery is moving to infrastructure. Cloudflare's approach โ automatic, CDN-level, zero-code โ will be replicated by other CDNs (Fastly, Akamai, AWS CloudFront). Content negotiation via
AcceptTrust remains the unsolved problem. WebMCP has no trust model. Cloudflare Markdown has consent signals but no content integrity verification. MCP has authentication but no feed-level trust. LLMFeed's Ed25519 signatures and LLMCA certification remain the only comprehensive trust infrastructure for the agentic web.
What WellKnownMCP Brings to This Landscape
We started WellKnownMCP in 2025 with a simple thesis: the web needs a standardized way for sites to declare themselves to AI agents, with cryptographic trust as the foundation.
In February 2026, this thesis is more relevant than ever:
Discovery:
.well-known/mcp.jsonTrust: No other standard provides cryptographic content verification. As the agentic web scales, trust becomes the critical bottleneck. Unsigned content is a vector for spoofing, tampering, and prompt injection.
Accessibility: Not every organization can run MCP servers or implement WebMCP JavaScript. LLMFeed's static-file approach works with GitHub Pages, any CDN, and minimal technical resources.
Comprehensiveness: LLMFeed's 13 feed types cover use cases no other standard addresses โ pricing feeds, credential scoping, session replay, agent economy protocols, and more.
We do not have Google's engineering power or Cloudflare's infrastructure scale. What we have is a vision that keeps being validated, a specification that fills gaps no one else addresses, and a community that has been building the trust layer the agentic web desperately needs.
The Road Ahead: 2026-2027 Predictions
Q1-Q2 2026:
- WebMCP graduates to Chrome default (no flag)
- Edge ships WebMCP (Microsoft co-authored the spec)
- reaches draft status in MCP specification
.well-known/mcp.json - First major Cloudflare Markdown adoption data published
- IETF forms a formal working group on agentic AI communication
Q3-Q4 2026:
- Firefox announces WebMCP implementation timeline
- CDN-level agent content delivery expands beyond Cloudflare
- Enterprise demand for trust/verification accelerates (LLMFeed territory)
- First agentic web auditing tools emerge (like Lighthouse, but for agents)
- Agent discovery aggregators appear (the "Google Search Console" for agents)
2027:
- WebMCP becomes a standard browser API (like Geolocation or Web Push)
- The discovery + trust + execution stack stabilizes into best practices
- "Agentic readiness" becomes a standard metric alongside Core Web Vitals
- The web has effectively two interfaces: one for humans (HTML), one for agents (structured)
Conclusion: The Map Is Not the Territory
This guide maps the current landscape. But the landscape is changing monthly.
What will not change:
- Agents need structured data (every standard agrees on this)
- Discovery must be standardized (is winning)
.well-known/ - Trust must be verifiable (still an open problem for most standards)
- The web will serve both humans and agents (dual-interface future)
What will change:
- Which specific standards dominate (WebMCP has Chrome's weight, but the web is more than Chrome)
- How standards interoperate (expect bridge protocols and unified discovery)
- Who controls the stack (open standards vs. platform lock-in)
- How fast adoption occurs (Cloudflare's zero-friction model sets the bar)
Build for the stack, not for a single standard. Implement what your users (human and agent) need today. And always verify trust โ because in the agentic web, unsigned is unverified, and unverified is unsafe.
WellKnownMCP maintains the agentic web discovery and trust infrastructure at wellknownmcp.org. The LLMFeed specification, LLMCA certification authority, and developer toolkit are available for immediate use.
Further Reading:
Unlock the Complete LLMFeed Ecosystem
You've found one piece of the LLMFeed puzzle. Your AI can absorb the entire collection of developments, tutorials, and insights in 30 seconds. No more hunting through individual articles.
๐ Next Steps for Agents
โข Export this content: Available formats
โข Explore capabilities: API endpoints
โข Join ecosystem: Contribute to LLMFeed
โข Download tools: Get MCP resources
โข Learn prompts: Prompting for agents