This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. WebMCP Bridge

WebMCP Bridge

Make your WordPress site natively AI-agent friendly via the WebMCP protocol — no backend server required.

400+ active installsFree on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping WebMCP Bridge running.

WordPress compatibility
Tested to 6.9.5 — 1 branch behind 7.0
Tested against the WordPress branch in use today.
Last updated
3 months ago
Requires PHP
8.0
Your host must be running at least this version.
Requires WordPress
6.0
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

400+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how WebMCP Bridge is looked after — not on how many stores run it.

Solid
Not enough public feedback to put a confident number on this one. Little public feedback — score rests mostly on release activity. What we can see is below.

Maintenance
35 / 35
Updated 104 days ago.
WordPress compatibility
14 / 20
Tested to WP 6.9.5, 1 branch(es) behind.
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
Not enough data
No ratings yet.
Listing transparency
6 / 10
Provides: description, homepage
2 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-02 from the WordPress.org plugin registry.
Ratings

No one has rated this plugin on WordPress.org yet. That is a statement about the ratings page, not about the plugin — plenty of well-kept plugins never collect them.

WebMCP Bridge exposes your WordPress (and WooCommerce) functionality as WebMCP tools that AI agents can discover and invoke directly in the browser.

Once installed, your site automatically becomes “agent-friendly”:

  • AI agents can search posts, pages, and custom post types
  • AI agents can browse products, manage the cart, apply coupons (WooCommerce)
  • AI agents can read navigation menus and site metadata
  • Developers can register custom tools in minutes via a simple PHP API

What is WebMCP?

WebMCP is a new browser-native protocol (currently in Chrome Early Preview) that lets web apps expose their functionality as structured “tools” that AI agents can invoke — without needing to screenshot or parse HTML. Think of your website as an MCP server running entirely client-side.

How it works

  1. Install and activate the plugin
  2. Enable the features you want from Settings → WebMCP Bridge
  3. Your tool manifest is immediately available at /wp-json/webmcp-bridge/v1/manifest
  4. AI agents (or any JavaScript code) can call your tools via REST API or the native browser WebMCP API

Included tools

Core:

  • search_posts — Search posts, pages, or custom post types
  • get_post — Retrieve a single post by ID or slug
  • get_menu — Return navigation menu items
  • get_categories — List taxonomy terms
  • get_site_info — Site name, description, URL, language
  • submit_contact_form — Contact Form 7 integration

WooCommerce (requires WooCommerce plugin):

  • woo_search_products — Search by keyword, category, price range
  • woo_get_product — Full product details including attributes
  • woo_add_to_cart — Add a product to the cart
  • woo_get_cart — Current cart contents and totals
  • woo_remove_from_cart — Remove an item by cart key
  • woo_apply_coupon — Apply a coupon code
  • woo_get_checkout_fields — Return checkout field schema
  • woo_get_product_categories — List all product categories

Even more powerful with Mescio for Agents

WebMCP Bridge integrates automatically with the Mescio for Agents plugin. When both plugins are active, two additional tools are unlocked:

  • get_markdown_content — Returns any post or page as clean Markdown, the format AI models consume most efficiently. Instead of raw HTML, agents receive structured, token-optimized content ready for reasoning and summarization.
  • get_llms_txt — Exposes the site-wide llms.txt context document (index or full variant), giving agents an instant, structured overview of what the site is about, who it is for, and what content is available — before they even start searching.

Together, the two plugins turn your WordPress site into a fully AI-native content source: WebMCP Bridge handles the tool layer (what agents can do), while Mescio for Agents handles the content layer (what agents can read and understand).

Privacy

This plugin does not collect, store, or transmit any user data to external servers. All tool execution happens locally within your WordPress installation. No telemetry, no phone-home, no external API calls.

Do I need Chrome for this to work?

No. The REST API endpoints work in every browser and environment. The native WebMCP browser registration is only available in Chrome Early Preview (experimental), but the fallback JavaScript API (window.webmcpBridgeTools) and REST endpoints work everywhere.

Is this secure?

Yes. Read-only tools (search, get post, etc.) are publicly accessible by default, matching WordPress’s own REST API behaviour. Write-action tools (add to cart, apply coupon, submit form) require a valid WordPress nonce. You can customise which tools require authentication via the webmcp_bridge_protected_tools filter.

Does it work with WooCommerce?

Yes. WooCommerce tools are automatically registered when WooCommerce is active and the WooCommerce option is enabled in settings.

What does Mescio for Agents add?

When Mescio for Agents is active alongside WebMCP Bridge, two extra tools become available in the manifest: get_markdown_content (AI-optimized content format) and get_llms_txt (site-wide context document). These are detected automatically — no configuration needed.

Can I add my own tools?

Absolutely. Use the PHP API:

add_action( 'plugins_loaded', function() {
    if ( ! class_exists( 'WebMCP_Bridge_Tool_Registry' ) ) return;
    $registry = WebMCP_Bridge_Tool_Registry::instance();
    $registry->register( 'my_tool', [
        'description' => 'Does something useful.',
        'group'       => 'custom',
        'inputSchema' => [ 'type' => 'object', 'properties' => [] ],
        'callback'    => function( $params ) { return [ 'ok' => true ]; },
    ] );
} );

Where is the manifest URL?

https://your-site.com/wp-json/webmcp-bridge/v1/manifest

You can also find it on the Settings → WebMCP Bridge page with a one-click copy button.

Does this plugin collect any data?

No. WebMCP Bridge does not collect, store, or send any data to external servers. See the Privacy section above.

Categories
AI assistants & chatbots
Plugin details
Version1.6.0
Last updated2026-04-20 7:59am GMT
Added2026-03-23
Requires WordPress6.0
Tested up to6.9.5
Requires PHP8.0

Tags on WordPress.org
AI
AI agent
mcp
webmcp
woocommerce
Alternatives
Other plugins in the same categories.
MxChat – AI Chatbot & Content Generation for WordPress
2K+ installs
5.0(29)
BotWriter – AI Writer & SEO Content Generator
3K+ installs
4.4(16)
AxiaChat AI – Free AI Chatbot (Answers Customers Automatically)
1K+ installs
5.0(12)
Notification for Telegram
4K+ installs
4.9(68)
AI ChatBot for WooCommerce – WoowBot
900+ installs
4.8(19)
Live Chat & AI Chatbot – onWebChat
700+ installs
4.7(24)
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy