Royal MCP Server

Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.

Local serverstdioGo

What is the Royal MCP server?

Royal MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.

What you get

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.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What the assistant can call

Once Royal is connected, these are the calls the assistant has available:

  • 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
  • Plugin — Tools

Configuration and credentials

You will need 2 environment variables: YOUR_API_KEY, YOUR_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Royal.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the royal mcp server does with a few real requests.

Choosing this one

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Royal's toolset — Content, Taxonomies, Media and 11 more — is a fair guide to whether it matches your workflow. It is maintained by com.royalplugins; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ContentPosts, pages, custom post types (full CRUD + revisions + featured images)
TaxonomiesCategories, tags, custom taxonomies, term meta, post-term linking
MediaBrowse, upload (URL or base64), update metadata, delete
CommentsCreate, moderate (approve / spam / trash)
UsersRead display names + roles (emails and usernames are not exposed)
MenusRead, create items, reorder, update with destructive-write guardrails
ThemeCustom CSS, theme mods, active theme detection
SitePermalink structure, options (allowlisted), site info
SearchCross-content search by query
SEOYoast / Rank Math / AIOSEO meta read/write where the plugin is active
DiagnosticsSite 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 versi
PluginTools
WooCommerce26
Elementor8

How to install the Royal MCP server

{
  "mcpServers": {
    "my-wordpress": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://yoursite.com/wp-json/royal-mcp/v1/mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
YOUR_API_KEYCredential the server authenticates with.Yes
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Royal to Content.
  • Use Royal to Taxonomies.
  • Use Royal to Media.

Frequently asked questions

It connects Royal to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Content, Taxonomies, Media, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Royal directly.