AI Agents Can't Use Your
WordPress Site. Yet.
WebMCP — the new browser standard backed by Google and Microsoft — lets AI assistants interact with your forms, products, and bookings. One plugin. No code. Just activate.
A New Layer for the Web:
Agent Interaction
On February 9, 2026, Google released WebMCP — a new web standard that lets AI assistants interact directly with websites. Not by scraping pages. Not by guessing at forms. Through structured, declared tools that your site explicitly offers to AI agents.
You optimized your site for Google Search.
Then you made it mobile-friendly.
Now you need to make it agent-ready.
When someone tells their AI assistant “find me a boutique hotel in Barcelona” or “order running shoes under $100,” the agent needs structured tools to act. WebMCP provides the mechanism for sites to declare those tools.
This isn't coming. It's here. Chrome 146 supports it today.
WordPress powers a large share of the web. WebMCP brings a new interaction layer to these sites.
See What Changes When Your Site Speaks to AI Agents
Same WordPress site. Same forms. Same products. A hypothetical look at how agent interactions could differ from traditional browsing.
WooCommerce Store
A customer visits your store. Browses products across multiple category pages. Clicks through sizes and variants. Adds to cart. Fills shipping details manually.
Many steps before checkout.search_productsget_product_detailsadd_to_cartapply_couponcheckouttrack_orderBooking Site
A customer searches for availability. Navigates to the booking page. Checks calendar. Selects dates. Fills the reservation form. Enters payment details.
Multiple page loads before booking.check_availabilitybook_roomget_pricingcancel_bookingService Business
A potential customer finds your website. Navigates to the Contact page. Fills out name, email, phone, service type, and message. Submits. Waits for a reply.
Plus waiting for a response.request_quotesubmit_inquiryschedule_callbacksearch_servicesEvery tool is generated automatically from your existing WordPress setup. You don't create these — the plugin does.
Agent-Ready in 60s
Three steps. No code. No developer required.
Install
You'll install the WebMCP plugin from your WordPress dashboard. One click. 15 seconds.
Plugins → Add New → Search "WebMCP" → Install → Activate.
Auto-Configure
The AI Co-Pilot will scan your entire site — every form, every product, every booking widget — and generate WebMCP tool definitions automatically. You'll review and approve with one click.
contact_inquirybook_appointmentrequest_quotesubscribe_newsletterGo Live
Your Agent Readiness Score will appear. Your site will become visible to AI agents. You'll track results right in your WordPress dashboard.
No code. No theme editing. No developer required.
The AI Co-Pilot will handle the technical work. You'll just approve it.
Your WooCommerce Store, Agent-Powered
The plugin scans your product catalog, categories, and checkout flow — then generates WebMCP tools that let AI agents browse, search, compare, and purchase. Automatically.
Insight: AI agents convert 33% better than human browsing because they skip the browsing.
Smart Product Search
Auto-generated from your WooCommerce categories, tags, and attributes.
"Show me red dresses under $80 in size M"
Returns matching products with name, price, image, stock status, and direct link.
Cart & Checkout
Full shopping flow with variation handling and user-confirmed payment.
"Add the blue size 10 to my cart"
Triggers requestUserInteraction() — the customer always confirms payment.
Real-Time Inventory
Tools reflect live stock levels. Out-of-stock items excluded from results.
"Is this shoe available in size 11?"
Backorder status and price updates reflected in real-time.
Variations & Attributes
Complex products handled: "Blue, size L, cotton" extracted correctly.
"What colors does this come in?"
Variant-specific pricing, stock levels, and attribute filters in search tools.
Order Tracking
Post-purchase tools: "Where's my package?" with real-time status.
"When will my order arrive?"
Order history and reorder capability for returning customers.
Discounts & Coupons
Full discount support: coupon codes, sale prices, cart-level discounts.
"Use code SAVE20 on my order"
Agent communicates savings to user ("You saved $12 with code SAVE20").
Every Form Becomes an Agent Tool
Contact Form 7. Gravity Forms. WPForms. The plugin detects them all and adds WebMCP metadata automatically.
<!-- Standard CF7 output -->
<form action="/contact/"
method="post">
<input name="your-name" />
<input name="your-email" />
<textarea name="message"></textarea>
<input type="submit" />
</form><!-- Same form + WebMCP attrs -->
<form action="/contact/"
toolname="contact_inquiry"
tooldescription="Submit a
contact inquiry."
toolautosubmit>
<input name="your-name"
toolparamtitle="Name" />
<input name="your-email"
toolparamtitle="Email" />
<textarea name="message"
toolparamtitle="Message"></textarea>
</form>+ most HTML forms work automatically.
Your Agent Readiness Score
A single number that shows how well AI agents can interact with your site. Like Lighthouse for PageSpeed — but for the AI era.
Top 22% in your industry. Improve Tool Descriptions (+8 pts) to reach top 10%.
Embed with [webmcp_badge]
Track How AI Agents Interact With Your Site
Analytics built into your WordPress dashboard. A WordPress site with WebMCP could track agent visits, tool usage, and interaction patterns.
Track how many AI agents discover and interact with your site's tools
See which auto-generated tools agents call most frequently
For WooCommerce stores: count orders where an agent helped the customer
Compare agent-driven sessions against traditional browsing sessions
search_productsProduct catalog queriescheck_availabilityBooking and scheduling lookupsget_product_detailsVariant and pricing requestsrequest_quoteService inquiry submissionsbook_appointmentCalendar-based reservationsA WordPress site with WebMCP could surface patterns like which products agents search for most, which form fields cause agent errors, and how agent-assisted sessions compare to traditional browsing.
Agent traffic would represent a new channel alongside existing organic, paid, and social traffic -- measured separately in your WordPress admin.
Built for WordPress Developers
Standard WordPress hooks, filters, and REST API. If you know WordPress, you already know how to extend WebMCP.
Declarative API (HTML Attributes)
The plugin injects WebMCP attributes into your existing HTML at runtime. No template files are modified — everything is added via output buffering.
<!-- WebMCP attributes added at runtime -->
<form action="/contact/"
toolname="contact_inquiry"
tooldescription="Submit a contact
inquiry with name, email, and message."
toolautosubmit>
<input name="name"
toolparamtitle="Full Name"
toolparamdescription="The
visitor's full name" />
</form>Imperative API (JavaScript)
For dynamic tools (AJAX results, SPA routes), use the imperative JavaScript API.
// Register a dynamic tool via JS
navigator.modelContext.registerTool({
name: "search_products",
description: "Search the product catalog",
parameters: {
query: { type: "string", required: true },
category: { type: "string", enum: ["all", "shoes"] }
},
async handler(params) {
const res = await fetch(`/wp-json/wc/v3/products?search=${params.query}`);
return res.json();
}
});Security & Privacy First
Your data never leaves your server. The plugin adds capabilities — it doesn't extract anything.
Agent Interaction Security
- All tool calls are validated server-side before execution
- Rate limiting per agent (configurable: 60 req/min default)
- Input sanitization on all tool parameters via WordPress nonces
- Agents cannot access wp-admin or modify site settings
Data Privacy
- No customer data is sent to external servers — ever
- Tool definitions are generated and served locally
- Agent analytics stored in your WordPress database only
- Optional: exclude specific post types from agent access
GDPR & Compliance
- No cookies set for agent interactions
- No personal data collected by the plugin itself
- Compatible with all WordPress consent management plugins
- GDPR, CCPA, and ePrivacy compliant out of the box
WordPress Security Standards
- Follows WordPress Coding Standards and plugin security guidelines
- All database queries use $wpdb prepared statements
- Escapes all output with esc_html(), esc_attr(), wp_kses()
- Undergoes regular security audits — source code is open
Simple, Planned Pricing
Start free. Upgrade when you need WooCommerce integration or analytics. Join the waitlist to lock in launch pricing.
Free
For personal sites & blogs
Free forever
- Auto-detect up to 5 forms
- Basic tool generation
- Agent Readiness Score
- WordPress dashboard widget
- Community support
Pro
For businesses & WooCommerce
Billed annually ($276/year)
- Unlimited forms & tools
- WooCommerce deep integration
- Agent analytics dashboard
- Custom tool descriptions
- Priority support
- Agent Readiness Badge
- Industry benchmarks
- Conversion tracking
Agency
For agencies managing client sites
Billed annually ($756/year)
- Everything in Pro
- Unlimited sites (white-label)
- Multisite network support
- REST API & WP-CLI access
- Centralized dashboard
- Custom branding on badges
- Dedicated support channel
- Early access to new features
Enterprise? Need custom SLAs, on-prem deployment, or dedicated support?
Frequently Asked Questions
Everything you need to know about making your WordPress site AI agent-ready.
WebMCP is Google's new open standard (announced Feb 2026) that will let AI agents — like ChatGPT, Gemini, Claude — interact with websites the way humans do: filling forms, searching products, making bookings. Without WebMCP, AI agents can see your site's HTML but can't understand what actions are available. The WebMCP plugin will add WebMCP metadata to your existing WordPress site so AI agents can discover and use your forms, products, and services automatically.
Join the Waitlist to Be Among the First WordPress Sites AI Agents Can Use
WebMCP is a new standard that lets AI agents interact with websites. Get notified when the WordPress plugin is ready.
WebMCP is an open standard by Google. WebMCP is an independent plugin and is not affiliated with, endorsed by, or sponsored by Google or any AI provider.