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

Benchmarking 88 Small GGUF Models on a 16GB Mac Mini M4
An automated pipeline tested 88 GGUF models on a Mac Mini M4 with 16GB RAM, identifying 9 as unusable and 4 LFM2-8B-A1B MoE models on the Pareto frontier for speed and quality.

OpenAlly: Local AI Assistant for Android with Phone Control
OpenAlly is an Android app that runs an AI assistant locally on your phone via an embedded Node.js process, with 51 built-in skills and phone control capabilities through Aster companion. It connects to 19+ messaging platforms and supports 18 model providers with your own API keys.

Local AI Development with Qwen3.6-27B and Opencode on a 5090
A Reddit user shares their experience switching from cloud AI coding tools (Claude Code, Cursor) to a local setup using Opencode + llama-server + Qwen3.6-27B at 128K context on a single RTX 5090, citing freedom from usage limits and account risks.

agentcache: Python Library for Multi-Agent LLM Prefix Caching
agentcache is a Python library that enables multi-agent LLM frameworks to share cached prompt prefixes, achieving up to 76% cache hit rates and cutting inference time by more than half in tests with GPT-4o-mini.