Security-first MCP server for WordPress. Connect Claude, ChatGPT, and Gemini to your WordPress site with API key + OAuth 2.1 authentication, full activity logging, and capability-gated access.
A WordPress plugin that exposes your site as a Model Context Protocol server. AI agents — Claude.ai web, Claude Desktop, ChatGPT, custom clients — can read and write posts, pages, media, users, menus, WooCommerce orders, and Elementor pages, with every call going through capability gating, rate limiting, and an audit log. Distributed via the official WordPress.org plugin directory.
| Auth | API key (X-Royal-MCP-API-Key) or OAuth 2.1 with PKCE + Dynamic Client Registration (RFC 7591) |
| Transport | MCP 2025-11-25 Streamable HTTP (single /mcp endpoint, POST/GET/DELETE) |
| Tool count | Up to 144 (73 WordPress core + 71 conditional plugin integrations) |
| Abilities API | WP 6.9+ — every tool also registers as a WordPress ability, reachable via WP core REST at /wp-json/wp-abilities/v1/abilities/{name}/run and via the WordPress MCP Adapter's named royal-mcp-server |
| Rate limit | 60 req/min per IP (configurable) |
| Session model | Sliding 24h TTL with refresh-on-access |
| Activity log | Every tool call logged (tool name + arg keys; argument values are never recorded) |
| Distribution | wp.org plugin directory + GitHub releases + auto-update via WP admin |
| Tested | PHP 7.4 → 8.3, WordPress 5.8 → 7.0 |
| License | GPLv2+ |
- Content — Posts, pages, custom post types (full CRUD + revisions + featured images)
- Taxonomies — Categories, tags, custom taxonomies, term meta, post-term linking
- Media — Browse, upload (URL or base64), update metadata, delete
- Comments — Create, moderate (approve / spam / trash)
- Users — Read display names + roles (emails and usernames are not exposed)
- Menus — Read, create items, reorder, update with destructive-write guardrails
- Theme — Custom CSS, theme mods, active theme detection
- Site — Permalink structure, options (allowlisted), site info
- Search — Cross-content search by query
- SEO — Yoast / Rank Math / AIOSEO meta read/write where the plugin is active
- Diagnostics — Site status (WP/PHP/MySQL/plugins/themes/cron in one call), PHP error-log tail, WP cron schedule, and MCP
royal_mcp_connection_health(returns route, auth method, session ID, plugin version, and active page-builder versions for Divi + Elementor + Gutenberg)
Auto-register only when the integrated plugin is active.
| Plugin | Tools | What's covered |
|---|---|---|
| WooCommerce | 26 | Products, variations, attributes, coupons, orders, customers, store stats |
| Elementor | 8 | Clone pages, replace text, swap images, get outline, read single element, list templates, import templates, add widget |
| GuardPress | 7 | Security score, failed logins, blocked IPs, vulnerability scans, audit log |
| Royal AI Firewall | 6 | Dashboard stats, recent bot hits, per-bot policies (allow / block / challenge), daily rollups, one-call emergency lockdown |
| SiteVault | 6 | Trigger backups, monitor progress, list schedules |
| Redirection (new in 1.4.38) | 4 | List redirects with group + URL-substring filters, create + update redirects (301 / 302 / 307 / regex / groups), list redirect groups |
| Advanced Custom Fields | 4 | Read/write ACF fields with each field's Return Format respected (hydrated post objects, parsed repeater rows, image arrays); enumerate field groups for AI-driven discovery |
| Royal Ledger | 4 | Software costs, renewal dates, license keys (values never exposed) |
| Royal Links | 3 | Branded short links, click stats |
| ForgeCache | 3 | Cache stats, clear cache, purge URL |
WordPress 6.9 shipped the Abilities API — a primitive that lets plugins register typed capabilities AI agents can call. As of 1.4.38, every Royal MCP tool also registers as a WordPress ability, giving you three ways to reach the same handlers:
- Native — Royal MCP's
/wp-json/royal-mcp/v1/mcpStreamable HTTP endpoint (unchanged, always available). - WP MCP Adapter — if the
wordpress/mcp-adapterpackage is installed, Royal MCP registers a namedroyal-mcp-serveron themcp_adapter_inithook alongside adapter's default server. - WP core REST — direct ability invocation at
/wp-json/wp-abilities/v1/abilities/{name}/runfor callers that prefer the core WP endpoint.
Same handlers, three transports, one set of per-tool capability gates. Bridge can be disabled with the royal_mcp_abilities_registration_enabled option (default: on).
Explicit scope boundaries — the integration model is "narrow tools that work reliably," not "expose every API surface."
- No widget-level Elementor generation from scratch. Atomic widgets (Editor V4) pass through opaque; we never decode atomic schemas because Elementor itself may shift them.
- No Beaver Builder / Divi / Bricks page-builder JSON writes. Standard post content is readable and writable; page-builder-specific JSON storage is opaque unless covered by a dedicated tool.
- No theme builder template creation (Elementor or otherwise).
- No core file modifications — Royal MCP never writes to
wp-content/themes,wp-includes, orwp-admin. - No plugin installation or upgrades via MCP. Discovery yes; install/activate/deactivate no.
- No raw SQL. Queries go through
WP_Queryand$wpdb->prepare()only.
- Install from WordPress.org (recommended — auto-updates via WP admin) or upload the GitHub release zip.
- Royal MCP → Settings → click Generate API Key.
- Pick a client below.
Easiest path — no config file edits, no API key in your client.
- In Claude.ai → Settings → Connectors → Add Custom Connector.
- URL:
https://yoursite.com/wp-json/royal-mcp/v1/mcp - Approve the OAuth consent screen when prompted. Claude.ai handles dynamic client registration + PKCE flow against your site.
Easiest Claude Desktop path — no mcp-remote, no npx, no config-file editing.
- Download
royal-mcp-1.4.38.mcpbfrom the latest GitHub release. - Double-click the
.mcpbfile — Claude Desktop opens the install prompt. - Enter your site URL + API key when prompted. Connection is live.
The bundle ships a zero-dependency stdio-to-HTTPS bridge in Node ≥18, which Claude Desktop already includes. See Claude Desktop MCP Bundles for the .mcpb spec.
{
"mcpServers": {
"my-wordpress": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://yoursite.com/wp-json/royal-mcp/v1/mcp"]
}
}
}Config path: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows).
Skip OAuth and authenticate via header:
{
"mcpServers": {
"my-wordpress": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://yoursite.com/wp-json/royal-mcp/v1/mcp",
"--header", "X-Royal-MCP-API-Key:YOUR_API_KEY"
]
}
}
}ChatGPT's custom MCP connector takes the same URL as Claude.ai web. Follow ChatGPT's connector flow and paste https://yoursite.com/wp-json/royal-mcp/v1/mcp.
# 1. Initialize a session. -i prints headers so you can grab Mcp-Session-Id.
curl -i -X POST https://yoursite.com/wp-json/royal-mcp/v1/mcp \
-H "X-Royal-MCP-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"method": "initialize",
"id": 1,
"params": {
"protocolVersion": "2025-11-25",
"capabilities": {},
"clientInfo": {"name": "my-app", "version": "1.0"}
}
}'
# 2. List available tools using the session id from the response header.
curl -X POST https://yoursite.com/wp-json/royal-mcp/v1/mcp \
-H "X-Royal-MCP-API-Key: YOUR_KEY" \
-H "Mcp-Session-Id: <session_id>" \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "tools/list", "id": 2}'| Layer | What it does |
|---|---|
| API key | 32-char hex, timing-safe comparison. Sent via X-Royal-MCP-API-Key header. Regenerate from admin without server restart. |
| OAuth 2.1 | RFC 7591 Dynamic Client Registration, RFC 8414 metadata, PKCE S256 required, refresh tokens supported. No implicit grant. No client_credentials grant. |
| Capability gating | Every tool checks WordPress capabilities. edit_posts for create/update, manage_options for site settings, edit_post per-post for individual operations. |
| Rate limiting | 60 requests/minute per IP, sliding window. |
| Session model | Sliding 24h TTL with refresh-on-access. Cryptographically secure 32-byte session IDs. |
| Activity log | Every tool call writes a row to a database log. Records: tool name, argument keys, IP, User-Agent, errors. Never records argument values (they may contain customer data). |
| OAuth state recovery | One-click Reset OAuth State admin button wipes all clients + tokens + auth codes, without affecting your API key or settings. |
| Discovery | .well-known/oauth-authorization-server and .well-known/oauth-protected-resource served at site root per RFC 8414 + RFC 9728. |
Full security architecture: royalplugins.com/support/royal-mcp/
- Active maintenance — releases roughly weekly. See releases for changelog.
- MCP spec compliance — implements the Streamable HTTP transport (2025-11-25).
- Issues — github.com/royalplugins/royal-mcp/issues. Customer-impact issues are typically acknowledged within 24h and triaged with version targets.
- Contributing — PRs welcome. The plugin source is committed to both this repo and the wp.org SVN trunk; releases are coordinated through the wp.org review process.
- Editing Elementor with Claude: The Four Workflows That Work Today — the four real architectures for AI-editing Elementor pages and when to reach for which. User-facing version with prompts, examples, and a video demo of the clone-and-customize flow.
- Editing Elementor with Claude: 4 MCP Architectures — engineer's cut on Hashnode. The PHP under the hood of
elementor_clone_page, the six tool signatures, and the HTTP-Basic-vs-OAuth-2.1 auth-model tradeoff.
- GuardPress — WordPress security hardening
- SiteVault — WordPress backups and migration
- ForgeCache — Caching and performance
- FormForge — Form builder with PDF generation
- SEObolt — SEO toolkit for WordPress
GPLv2 or later — see LICENSE or the GNU site.
Royal MCP is provided as-is. API keys protect your endpoints; guard them like any other credential. You are responsible for the content, commands, and actions any AI platform is allowed to perform on your WordPress site.
Built by Royal Plugins
Lightweight, security-first WordPress plugins.
© 2026 Royal Plugins.