Anthropic published the MCP 2026 roadmap on March 9. It's ambitious: multi-agent orchestration, streaming, enterprise auth, and a move to vendor-neutral governance under the Linux Foundation. Microsoft shipped their C# SDK on March 5. The MCP ecosystem is growing fast and in the right direction.
But read the roadmap carefully and you'll notice what's missing. Two capabilities that production agents will inevitably need - and that the MCP spec explicitly does not address.
What MCP 2026 Covers
The roadmap is solid. Here's what's coming:
Multi-agent orchestration. Agents coordinating with other agents through standardized handoff protocols. This is the right move - single-agent systems hit a ceiling quickly.
Streaming. Long-running tool calls that return results incrementally. Critical for real-time data feeds, monitoring, and any operation that takes more than a few seconds.
Enterprise auth. OAuth flows, role-based access, token scoping. The things IT departments demand before they'll approve any tool integration.
Linux Foundation governance. Moving MCP from an Anthropic-controlled spec to a vendor-neutral foundation. Smart politically - Microsoft, Google, and others are more likely to invest in a standard they have governance rights over.
All of this is good. None of it addresses two things production agents need today.
Gap #1: Payments
MCP tools are currently free to call. Your agent connects to a tool server, invokes a function, gets a result. No payment flow exists in the protocol.
This works for internal tools and open APIs. It breaks the moment your agent needs to pay for something. And in production, agents need to pay for a lot of things: premium data feeds, compute resources, specialized model inference, third-party agent services.
The MCP spec doesn't define how an agent attaches payment to a tool call. There's no payment field in the request schema. No settlement protocol. No concept of "this tool costs $0.05 per call."
This isn't an oversight by the MCP team - it's a deliberate scoping decision. MCP is a tool protocol, not a commerce protocol. But the gap still needs to be filled.
x402 fills it at the HTTP layer. When a tool's endpoint returns 402 Payment Required, the agent's wallet settles payment and retries. agent-wallet-sdk wraps this with spend limits and intent verification so your agent can't spend without authorization.
The two compose cleanly: MCP handles tool discovery and invocation. x402 + agent-wallet-sdk handle payment when a tool isn't free. No changes to the MCP spec required.
Gap #2: Browser-Native Tool Discovery
MCP tool servers require configuration. You add a server URL, the agent connects, it gets a tool manifest. This is server-to-server discovery - the agent has to know where to look before it can find tools.
What about the millions of web applications that aren't running MCP servers? Every SaaS product, every web API, every interactive website has capabilities an agent could use. But there's no way for an agent browsing the web to discover them through MCP.
WebMCP addresses this with browser-native tool discovery. Websites declare their capabilities using navigator.modelContext.registerTool() - a browser API currently in Chrome 146 DevTrial. An agent visiting the site discovers available tools the same way a human reads the UI, but structured for programmatic consumption.
// Website exposes its capabilities to visiting agents
navigator.modelContext.registerTool({
name: 'search-flights',
description: 'Search available flights between two airports',
parameters: {
origin: { type: 'string', description: 'IATA airport code' },
destination: { type: 'string', description: 'IATA airport code' },
date: { type: 'string', format: 'date' }
}
});
webmcp-sdk is the developer toolkit for implementing WebMCP on your site. For the MCP ecosystem, it extends tool discovery from configured servers to the entire web.
Why These Gaps Are Our Opportunity
The MCP team made the right call keeping payments and browser discovery out of the core spec. A tool protocol shouldn't be a payment protocol or a browser standard. But production agents need all three - and someone has to build the layers that connect them.
That's exactly what agent-wallet-sdk and webmcp-sdk do. They don't compete with MCP. They complete it.
MCP gives you structured tool invocation with enterprise auth. agent-wallet-sdk gives you programmatic payments with spend controls. webmcp-sdk gives you browser-native tool discovery. Stack all three and you have the full infrastructure for agents that can find tools, use tools, and pay for tools - across both configured servers and the open web.
The MCP ecosystem is moving fast. The 2026 roadmap will take 6-12 months to fully ship. The payments and discovery layers are available now. Builders who integrate all three today will have the most capable agent infrastructure when the rest of the stack catches up.
Don't wait for MCP to add payments. Add payments to MCP.
This article was written with AI assistance. All technical claims, code, and architectural decisions were validated by the author.
Top comments (0)