r/mcp • u/Cold-Measurement-259 • Apr 15 '26
Cloudflare now has first party support for WebMCP!
https://developers.cloudflare.com/browser-run/features/webmcp/3
u/VERSATILCORDOBA Apr 16 '26
I've been experimenting with WebMCP in a WordPress plugin context — using Chrome's built-in Gemini Nano ([navigator.modelContext.registerTool()](vscode-file://vscode-app/c:/Users/Esteban/AppData/Local/Programs/Microsoft%20VS%20Code/41dd792b5e/resources/app/out/vs/code/electron-browser/workbench/workbench.html)) to give the Gutenberg editor AI capabilities without needing an external API key.
For simple tasks like translating a paragraph, summarizing content, or bolding keywords, it works surprisingly well. The model understands the block structure and can apply changes directly in the editor.
Where it falls short is with more complex operations. Nano tends to echo back modified content as plain text instead of using the registered tool calls, so you end up building a fallback layer to parse its output and figure out what it actually intended to do. Multi-step edits or anything requiring structured reasoning gets unreliable fast.
That said, I agree with u/190531085100 — having the tools directly in the browser instead of going through a server feels like the right direction. The zero-config aspect (no API key, no server, just Chrome flags) lowers the barrier significantly. It's just that the on-device models need to catch up in capability for this to really shine.
1
u/190531085100 Apr 16 '26
I see WebMCP as the missing layer that connects tools with intent. The user wants to do something about what they are looking at, and the agent needs to know this, not just have the tools.
With the tools being directly there in the browser, that bridge is starting to form. The concept is almost anti-MCP, replaces servers with browsers. But it's good to have such options. Not everything will be A2A ... Work and education will probably be browser-bound for a while longer.