WebMCP: The Protocol That's Changing the Game
An open protocol by Google and Microsoft that lets AI agents interact with any website. Here's how it works.

In February 2026, Google and Microsoft jointly published the 1.0 specification of WebMCP (Web Model Context Protocol). An open protocol that allows AI agents to interact with any website in a structured, programmatic way.
To put it simply: if a website implements WebMCP, any agent — ChatGPT, Claude, Gemini — can "talk" to it. Not by scraping HTML. Not by guessing. Using defined, documented tools.
How It Works
WebMCP is a browser API. When a site implements it, the page calls navigator.modelContext.provideContext({ tools }) to register the tools it wants to expose. A restaurant could expose:
get_menu()— returns the menu with prices and allergenscheck_availability(date, party_size)— checks table availabilitymake_reservation(...)— creates a reservation, asking the user for explicit confirmation
The user's AI agent — Claude in Chrome, an MCP extension in Gemini, or ChatGPT's agent mode — discovers these tools when the page loads and can invoke them directly. Execution happens inside the user's own browser, within the same origin as the site: it inherits the session, requires no API keys, and goes through no intermediaries.
When the user tells their agent "book a table for 4 this Saturday at this restaurant," the agent reads the menu, checks availability, and proposes the reservation — without sending the user off to another platform and without anyone collecting a commission on it.
Why It's Different from Traditional APIs
APIs have been around for decades. The fundamental difference with WebMCP is that it's designed to be automatically discovered by AI agents. You don't need to publish a Swagger spec, hand out API keys, or build point-to-point integrations with every platform.
Each tool is registered with a name, a natural-language description, and a schema of the arguments it accepts. An agent that has never interacted with your site can understand what you offer and how to use it as soon as the page loads, just like a human understands a form when they see it.
The Ecosystem in 2026
Just one month after its publication, WebMCP adoption is in its early stages. OpenAI has announced native support in ChatGPT by late Q1. Anthropic already supports it in Claude. Google is integrating it into Gemini.
For businesses, this means one thing: those who implement now will have months of advantage over their competition. And in an ecosystem where agents learn and prioritize based on past experiences, those months translate into years of compounded advantage.
Open Source by Design
WebMCP is an open protocol. It doesn't belong to any company. Anyone can implement it. At Agentikas, we publish our implementations as open source, because we believe the agentic web should be built on open standards, not on walled gardens.
Comments
Loading comments…
Sign in on your dashboard to join the conversation.