[Docs] Add wordpress-mcp to PHP Libraries Using the MCP SDK - #491
Open
Faneraiy14 wants to merge 1 commit into
Open
[Docs] Add wordpress-mcp to PHP Libraries Using the MCP SDK#491Faneraiy14 wants to merge 1 commit into
Faneraiy14 wants to merge 1 commit into
Conversation
MCP server for WordPress built on this SDK, exposing site health, posts (list/update), and plugins as tools. Runs as a WordPress plugin serving MCP over the REST API, following the same pattern as the existing Drupal/CakePHP/Kirby entries in this list (native plugin for its target CMS, not a standalone server).
Faneraiy14
requested review from
CodeWithKyrian,
Nyholm,
chr-hertel and
soyuka
as code owners
August 30, 2026 05:55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Faneraiy14/wordpress-mcp to the "PHP Libraries Using the MCP SDK" list.
It's an MCP server for WordPress, built on
mcp/sdk(^0.8), running as a WordPress plugin and serving MCP over the REST API at/wp-json/wordpress-mcp/v1/mcp- same pattern as the existing Drupal/CakePHP/Kirby entries in the list (native to its target CMS rather than a standalone server).Four tools currently, all live-verified against a real WordPress install rather than mocked:
get_site_health- runs WordPress's own Site Health checks, returns a critical/recommended/good summarylist_posts(limit, status)- recent postsupdate_post(post_id, title?, content?, status?)- the one write tool, gated per-post bycurrent_user_can('edit_post', ...)list_plugins()- installed plugins with active/inactive statusTest plan
composer install+vendor/bin/phpunit- 7/7 passing (the pure formatter/summarizer logic; the WP-runtime glue itself needs a running WordPress to exercise)initialize→ session →tools/call) against a real local WordPress install with a real authenticated request, for all four tools