WordPress MCP Adapter | AI agents discover and use site abilities

WordPress has introduced the MCP Adapter, an official package that connects the Abilities API with the Model Context Protocol. Published on February 4, 2026, the WordPress Developer Blog explains how the adapter lets AI tools discover and call WordPress Abilities, opening a path for more structured automation across plugins, local development environments, and site management workflows.


WordPress MCP Adapter workflow for AI agents and site abilities

{getToc} $title={Table of Contents}

WordPress connects Abilities with AI agents through MCP


The WordPress MCP Adapter builds on the Abilities API introduced in WordPress 6.9. That API gives developers a standardized way to define what WordPress core, plugins, and themes can do, including typed input and output schemas, permission callbacks, and executable callbacks.


For web designers, template creators, and WordPress developers, this is a meaningful shift because AI tools need more than general access to a website. They need clearly described, permission-aware actions that can be discovered and executed safely. The MCP Adapter turns those registered Abilities into a format AI clients can understand and use.



What the WordPress MCP Adapter does


The adapter implements MCP inside the scope of a WordPress site. According to the Developer Blog, it lets AI tools such as Claude Desktop, Claude Code, Cursor, and VS Code discover and call WordPress Abilities directly, whether the site is running locally or is publicly accessible.


By default, the adapter registers a server named mcp-adapter-default-server and exposes tools for discovering abilities, getting ability information, and executing abilities. This gives agents a layered workflow: first identify what a site can do, then inspect the details, then call the appropriate Ability when permission allows it.


New automation paths for WordPress builders


The most exciting part for WordPress creators is that MCP turns site functionality into something AI agents can reason about more safely. Instead of giving an assistant vague access to a website, developers can expose specific Abilities with schemas, descriptions, and permission rules.


This can support workflows such as fetching site information, checking environment details, updating posts, running diagnostics, reading structured data, or triggering plugin-specific actions. For agencies and template builders, that could eventually make maintenance, QA, documentation, content audits, and setup tasks more repeatable.


The security model is also important. The article explains that Abilities must be explicitly marked public for MCP access on the default server, and developers should carefully define permission callbacks before exposing anything to AI clients.


Why it matters for AI-ready WordPress workflows


For animetemplates, the key takeaway is that WordPress is moving toward a more structured AI automation layer. The combination of Abilities API and MCP Adapter gives developers a technical foundation for connecting site capabilities with agentic tools without relying on one-off integrations.


This is promising for future WordPress templates, plugins, and admin tools, but it also requires careful implementation. AI agents can be useful when actions are limited, typed, documented, and permission-aware. Without those guardrails, automation can create unnecessary risk for production websites.



Sources and Recommended Links