No install? Use cloud.anythingmcp.com directly.
Sign in, install the WordPress in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Connect WordPress to Claude AI using MCP. Manage posts, pages, media, SEO meta, and comments with natural language. Yoast and Rank Math supported.
Connect WordPress to Claude
WordPress is the world's most-used CMS. With AnythingMCP and Claude, you can run editorial workflows — content refresh, SEO optimisation, scheduled publishing, internal linking, comment moderation — entirely with natural language.
What You Can Do
- "Find every post about 'machine learning' published over 6 months ago and refresh the top 5."
- "Update the Yoast meta description on post 412 to a 155-character summary."
- "Move all comments by 'Anonymous' on post 87 to spam."
- "Schedule a draft post titled 'September product update' for next Tuesday at 10 AM Europe/Berlin."
- "Walk me through your Site Health checks and tell me what to fix."
Setup
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
- Generate a WordPress Application Password in
/wp-admin/profile.php → Application Passwords. (HTTPS required.) - Open
http://localhost:3000/connectors/store, import the WordPress adapter. - Supply
WORDPRESS_URL,WORDPRESS_USERNAME,WORDPRESS_APP_PASSWORD. - Assign the connector to an MCP server.
Connect Claude
{
"mcpServers": {
"wordpress": { "url": "http://localhost:4000/mcp" }
}
}
Skill Tools (the AI-native edge)
Claude reads only the tool list by default. When you ask "refresh stale content", Claude calls wordpress_skill_content_refresh and receives the full step-by-step recipe on demand — listing the stalest posts, reading bodies, rewriting, persisting. This keeps the context window light and the workflow explicit.
Available skills:
wordpress_skill_seo_content_pipelinewordpress_skill_content_refreshwordpress_skill_scheduled_publishingwordpress_skill_internal_linkingwordpress_skill_media_optimization
SEO Meta (Yoast & Rank Math)
Call wordpress_list_seo_meta_keys to get a reference card of all the Yoast and Rank Math meta keys exposed via REST. Then use wordpress_update_post_meta to set them.
wordpress_update_post_meta(postId=42, meta={
"_yoast_wpseo_metadesc": "A practical guide to ...",
"_yoast_wpseo_focuskw": "wordpress ai workflows"
})
Rank Math uses rank_math_description, rank_math_focus_keyword, rank_math_title.
Was this guide helpful?