

Dashboard — server status, endpoint URL, active connections, and recent AI tool calls at a glance.
Sokket turns your WordPress site into its own MCP server.
MCP — the Model Context Protocol — is the standard AI clients use to work with outside systems. Install Sokket and your site becomes one: a single endpoint that Claude, ChatGPT, Cursor, VS Code, Windsurf and any other MCP-compatible AI agent can connect to and actually use.
Instead of copying error logs and post content into a chat window, the agent reads them itself. Instead of describing your site to an AI, you connect it — and every tool call runs through a permission model you control.
Ask your AI agent to do the work directly:
This is not an AI content generator. Sokket writes nothing by itself and calls no AI provider. It is the connector that lets the AI client you already pay for reach your site safely.
The endpoint speaks Streamable HTTP with JSON-RPC 2.0, so any MCP-compatible client works. The built-in setup generator produces the exact command or config for yours, with your endpoint already filled in:
claude mcp add commandmcp-remote.cursor/mcp.json block.vscode/mcp.json blockmcp_config.json blockThis is the part most “AI for WordPress” plugins can’t say:
Bearer tokens — create a token in the admin, bind it to a WordPress user, and tick exactly which tools it may call. Tokens are stored as SHA-256 hashes and shown in plaintext exactly once. This is the option with the finest control, and it works with Claude Code, ChatGPT, Cursor, VS Code, and Windsurf.
OAuth 2.1 — for connector interfaces that have no field for a token, such as Claude Desktop’s custom connectors. Turn it on and clients configure themselves from the endpoint URL alone: RFC 9728 and RFC 8414 discovery, dynamic client registration, PKCE (S256) required, and refresh tokens. The person connecting signs in to WordPress, approves on a consent screen, and chooses read-only or full access. Every grant is listed in the admin and revocable in one click.
WordPress Application Passwords are accepted too, for quick local testing.
Sokket is built on the assumption that you should never have to simply trust the agent.
current_user_can() capability check. The token is never trusted on its own.delete badge in the allowlist, and are announced to the client with the MCP destructiveHint annotation so it can ask you to confirm before calling one. They count as writes, so a read-only connection can never call them.39 tools, grouped by area, each individually switchable per connection — plus 2 more when a supported SEO plugin is active.
Site & diagnostics
get_site_info — WordPress/PHP/DB versions, active theme, environment, debug flagslist_plugins — installed plugins, versions, update availabilitylist_themes — installed themesget_php_error_log_tail — last lines of the server-configured PHP error log (admins only)get_site_settings — general, writing, reading, discussion, and permalink settings from a fixed allowlistupdate_site_settings — change the site title, tagline, front page, posts per page, and date, time and timezone formats (off by default, per token; a fixed allowlist that can never reach the site address, the admin email, registration defaults, or the permalink structure)Content
list_posts, get_post, search_content — content inspectioncreate_post, update_post — content writes (off by default, per token)delete_post — move a post or page to the trash (off by default, per token; permanent deletion is refused unless the site opts in, and the front page and posts page are always refused)restore_post — bring a trashed post back to its previous status (off by default, per token)set_post_meta — assign a page template to a page (off by default, per token; an allowlist of meta keys, not an arbitrary meta writer)Media
list_media — browse the media libraryupload_media — add an image from base64 data (off by default, per token)set_featured_image — set or clear a post’s featured image (off by default, per token)Templates & parts — block themes
list_block_templates — every template and template part available to the active theme, including the ones that exist only as theme filesget_block_template — a template’s block markup, or the original theme file version of one that has been customisedupdate_block_template — create a template or override a theme-provided one (off by default, per token; the theme’s files are never modified)revert_block_template — discard a customisation so the theme file takes over again (off by default, per token)Global styles — block themes
get_theme_json — the active theme’s palette, gradients, spacing scale, font sizes and font families, with the exact reference strings for each, plus the layout widths and which blocks the theme stylesupdate_global_styles — change colours, typography, spacing, and per-block styling (off by default, per token; writes the same user layer the Site Editor saves to)reset_global_styles — discard the style customisations and fall back to the theme (off by default, per token)Blocks & validation — block themes
list_block_types — every block registered on the site, including ones a theme or plugin adds, with their attribute schemasvalidate_block_markup — check block markup against the registry before saving it: unregistered blocks, attributes that do not exist, values outside what an attribute accepts, blocks used outside the parent they need, unbalanced delimitersrender_block_template — render markup or a template to HTML, so the agent can see what its own output actually producesNavigation menus — block themes
list_navigation_menus — menus with their items as a nested list rather than raw block markupcreate_navigation_menu — build a menu from a list of items and get back the id a template’s navigation block needs (off by default, per token)update_navigation_menu — replace a menu’s items or rename it (off by default, per token)Taxonomies & terms
list_taxonomies, list_terms — taxonomy inspectioncreate_term, assign_terms, update_term — term writes (off by default, per token)delete_term — remove a term (off by default, per token; posts using it are never deleted, they simply lose the assignment)Comments
list_comments — review the moderation queuemoderate_comment — approve, unapprove, spam, unspam, trash, untrash (off by default, per token)reply_to_comment — reply as the connected user (off by default, per token)SEO — registered only when Yoast SEO, Rank Math, or SEOPress is active
get_seo_meta — read the meta description and focus keyword for a post or pageupdate_seo_meta — write them back through the active SEO plugin’s own post meta (off by default, per token)Register your own tools with a single filter, sokket_register_tools. Anything you add inherits the whole permission model, the audit log, and the transport for free, and shows up in the admin allowlist automatically. Filters are also provided for rate limits, upload restrictions, audit retention, the settings-read allowlist, and OAuth authorization rights.
Full documentation: beautifulplugins.com/docs/sokket-site-connector-for-mcp/