← All skills
Tencent SkillHub Β· Developer Tools

WordPress MCP

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/dev-tools.md, references/woocommerce-tools.md, references/core-tools.md, references/features.md, references/seo-tools.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
3.3.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

WordPress MCP

Manage WordPress sites through AI Engine's MCP Server. AI Engine is a free WordPress plugin that exposes a comprehensive MCP interface.

Setup

  • The user needs:
  • AI Engine plugin installed (free: https://wordpress.org/plugins/ai-engine/)
  • MCP Server enabled in AI Engine β†’ Settings β†’ MCP
  • A Bearer Token set in MCP settings
  • Connection details should be stored in the user's TOOLS.md:
  • ## WordPress MCP
  • **URL:** https://example.com/wp-json/mcp/v1/http
  • **Bearer Token:** <token from AI Engine MCP settings>

How to Call MCP Tools

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":{...}}}'

Discovery

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.

Connectivity Check

{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"mcp_ping","arguments":{}}}

MCP Features (Modular)

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.

Content Audit (WordPress + SEO Engine)

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

Publish a Post (WordPress core)

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

Translation Workflow (Polylang)

pll_translation_status β€” See coverage gaps pll_get_posts_missing_translation with target language pll_create_translation β€” Create translated post linked to original

Multi-Site Management

  • Store multiple sites in TOOLS.md and select by name:
  • ### My Blog
  • **URL:** https://blog.example.com/wp-json/mcp/v1/http
  • **Token:** abc123
  • ### My Shop
  • **URL:** https://shop.example.com/wp-json/mcp/v1/http
  • **Token:** xyz789

Tips

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • references/core-tools.md Docs
  • references/dev-tools.md Docs
  • references/features.md Docs
  • references/seo-tools.md Docs
  • references/woocommerce-tools.md Docs