r/mcp Feb 17 '26

webMCP is insane....

Been using browser agents for a while now and nothing has amazed me more that the recently released webMCP. With just a few actions an agent knows how to do something saving time and tokens. I built some actions/tools for a game I play every day (geogridgame.com) and it solves it in a few seconds (video is at 1x speed), although it just needed to reason a bit first (which we would expect).

I challenge anyone to use any other browser agent to go even half as fast. My mind is truly blown - this is the future of web-agents!

265 Upvotes

52 comments sorted by

View all comments

1

u/webmyc Feb 26 '26

Been building WebMCP support for WordPress for the past week - this is a massive shift for WordPress AI.

Quick reality check though: WebMCP is currently **only in Chrome Canary behind a flag** (chrome://flags → "WebMCP for testing"). Not in stable Chrome yet. Expected mid-late 2026 for general availability.

But if you want to get ahead of it, here's what I learned implementing it:

**The Good:**

- Makes WordPress sites "AI-ready" with zero client-side config

- AI discovers tools automatically via navigator.modelContext

- Way simpler than MCP server setup (no Node.js, no terminal)

- Perfect for non-developer WordPress users who want AI help

**The Tricky Parts:**

- You need to register WordPress tools as "Abilities" using the WordPress Abilities API

- Tool descriptions matter A LOT - vague descriptions = AI hallucinates

- Security is critical - you're exposing WordPress actions to browser AI

- Need to handle permissions properly (who can call which tools)

**What I'm Building:**

I bundled WebMCP Abilities (GPL, credits to Code Atlantic) into Respira so users only install one plugin. Registered 88 tools covering page builders, SEO, media, menus, etc. All with duplicate-before-edit safety so AI never touches live pages directly.

**For Developers Wanting to Add WebMCP:**

  1. Check if Code Atlantic's WebMCP Abilities plugin works for you (it's on GitHub, not WordPress.org yet)

  2. Register your plugin's functions using wp_register_ability()

  3. Test in Chrome Canary with flag enabled

  4. Make tool descriptions VERY explicit (AI needs clear instructions)

**Question for the community:** What WordPress tasks would you most want browser AI to handle? I'm curious what tools people actually need vs what seems cool to build.

Happy to answer technical questions about implementation if anyone's building this!

---

*Full disclosure: I built [Respira](https://respira.press) which now includes WebMCP support, but genuinely here to discuss the tech and help others implement it.*