Developer creates read/write WordPress MCP plugin with 28 abilities

A developer has created a WordPress plugin that provides full read/write MCP (Model Context Protocol) access for AI coding agents like Claude Desktop and Claude Code. The plugin addresses limitations in existing solutions: the official WordPress MCP Adapter is read-only, the WordPress.com connector has restrictions, and Jetpack AI is a closed system inside Gutenberg.
Key Features
The plugin registers 28 MCP abilities through the WordPress Abilities API, which is new in WordPress 6.9. The abilities are organized into three categories:
Content Management
- Search, create, edit, publish, schedule, and trash posts and pages
- Upload and manage media with SSRF protection on remote URLs
- Manage categories, tags, and comments
- Block-level editing for surgical changes
Content Quality
audit-post: scan for dead links, HTTP links, missing metadata, deprecated HTML, broken imagesrepair-post: automated fixes for what audit finds (http→https, legacy HTML→Gutenberg blocks, excerpt generation)- Revision history with line-based diffs
Safety Features
dry_runmode: preview what any write would do before committing- Concurrency guards:
expected_modified_gmtprevents accidental overwrites - Three server surfaces (reader / editorial / full) with different permission levels
- Audit logging: every change recorded with context (which MCP ability vs wp-admin)
Technical Details
The plugin is designed for a dedicated Editor-role WordPress user, with user-level restrictions that allow Claude to manage content but prevent access to plugins, themes, or settings. It automatically converts between Markdown (which Claude works in) and Gutenberg blocks (which WordPress stores).
Setup
Setup involves uploading the plugin zip, activating it, creating a dedicated WordPress user with an application password, and pointing your MCP client at the endpoint. The plugin bundles the MCP Adapter, requiring no npm, proxy server, or separate dependencies. Full setup instructions are in the readme.
The plugin works with Claude Desktop, Claude Code, or any MCP client, is free under GPL-2.0 license, has no tracking or upsell, and requires WordPress 6.9+. The project is available on GitHub at https://github.com/anotherpanacea-eng/anotherpanacea-wordpress-mcp.
📖 Read the full source: r/ClaudeAI
👀 See Also

Queuelo: A Lightweight Approval API for LLM Agents
Queuelo is a simple API layer that lets LLM agents pause before irreversible actions. Agents POST action requests, you get notified to approve or reject, and the agent receives the answer via webhook.

MCP Context Bloat: Real Costs and a Practical Fix for Claude Code Users
Running 9 MCP servers in Claude Code leads to 38k token cold starts, ~$700/month in tool definition overhead, and degraded model performance. A gateway pattern with BM25 ranking cuts context to 4k.

Tycono: Open-Source AI Agent Harness with Org Chart and Autonomous Improvement Loops
Tycono is an open-source harness where you define AI agent roles in YAML (CTO, engineer, QA, etc.) and they work together following an org chart with autonomous improvement loops. The system ran 17 rounds overnight on a pixel running game task, generating 6,796 lines of code across 43 commits.

ClawMetry: Open-Source Observability Dashboard for OpenClaw Agents
ClawMetry is an open-source observability dashboard for OpenClaw agents that provides live session activity, token cost tracking, memory file change detection, and stuck session alerts. It runs locally with pip install clawmetry and was built using OpenClaw itself.