Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage WordPress sites via MCP (Model Context Protocol) through AI Engine. Use for creating/editing posts, SEO analysis, analytics, media management, taxonomy operations, social media scheduling, multilingual content (Polylang), and any WordPress admin task. Requires AI Engine plugin (free) with MCP Server enabled. Also use when asked about WordPress site management, content workflows, or WP-related tasks.
Manage WordPress sites via MCP (Model Context Protocol) through AI Engine. Use for creating/editing posts, SEO analysis, analytics, media management, taxonomy operations, social media scheduling, multilingual content (Polylang), and any WordPress admin task. Requires AI Engine plugin (free) with MCP Server enabled. Also use when asked about WordPress site management, content workflows, or WP-related tasks.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Manage WordPress sites through AI Engine's MCP Server. AI Engine is a free WordPress plugin that exposes a comprehensive MCP interface.
All calls use JSON-RPC 2.0 over HTTP POST: curl -s -X POST <MCP_URL> \ -H "Authorization: Bearer <TOKEN>" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"<tool_name>","arguments":{...}}}'
List available tools (varies by enabled features): {"jsonrpc":"2.0","id":1,"method":"tools/list"} Always start with tools/list to discover what's enabled on this site.
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mcp_ping","arguments":{}}}
Tools are grouped into features that the site admin enables in AI Engine β Settings β MCP Features. Only WordPress core is enabled by default. Always use tools/list to discover what's available. FeatureDefaultDescriptionWordPressβ OnPosts, pages, comments, users, media, taxonomies, settingsPluginsOffInstall, activate, update, and modify pluginsThemesOffInstall, activate, switch, and customize themesDatabaseOffExecute SQL queries on the WordPress databasePolylangOffMultilingual content (requires Polylang plugin)WooCommerceOffProducts, orders, customers (requires WooCommerce)SEO EngineOffSEO analysis, analytics (requires SEO Engine plugin)Social EngineOffSocial media scheduling (requires Social Engine plugin)Dynamic RESTOffRaw access to WordPress REST API See references/features.md for tool details per feature.
mwseo_get_seo_statistics β Overall site health mwseo_get_posts_needing_seo β Posts with SEO problems Loop: mwseo_do_seo_scan per post β fix with mwseo_set_seo_title, mwseo_set_seo_excerpt
wp_create_post with post_title, post_content, post_status: "draft" Optionally set SEO metadata if SEO Engine is enabled wp_update_post with post_status: "publish" when ready
pll_translation_status β See coverage gaps pll_get_posts_missing_translation with target language pll_create_translation β Create translated post linked to original
Use wp_get_post_snapshot instead of multiple calls β gets post + meta + terms in one request Use wp_alter_post for search-replace edits instead of re-uploading entire content wp_get_posts returns no full content by default β use wp_get_post for content Analytics date params use start_date / end_date (not camelCase) Always run tools/list first β available tools depend on which features the admin enabled
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.