Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the WordPress in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Connect WordPress to ChatGPT using MCP. Edit posts, schedule publishing, manage SEO meta, and moderate comments from a chat interface.
Try asking
Example prompts for WordPress
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
Connect WordPress to ChatGPT
WordPress powers a huge slice of the web. With AnythingMCP, you can expose it to ChatGPT (via MCP-compatible clients like Claude Desktop, Open WebUI, or any MCP gateway) and have ChatGPT run editorial operations end-to-end.
Use Cases
- "Refresh our top 5 stalest blog posts" — ChatGPT lists oldest-by-
modified, reads bodies, rewrites, persists. - "Fix missing alt text on every image in the media library" — bulk accessibility pass.
- "Find all posts about Topic X and propose internal linking to our pillar pages" — site link-graph improvement.
- "Schedule a publishing calendar for the next 4 weeks" — create N draft posts with
status=future. - "Generate a Yoast SEO snippet for post 412" — meta title + description + focus keyphrase.
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. - Open
http://localhost:3000/connectors/store, import the WordPress adapter. - Supply
WORDPRESS_URL,WORDPRESS_USERNAME,WORDPRESS_APP_PASSWORD. HTTPS required.
Connect ChatGPT
Point your MCP-capable ChatGPT client at the AnythingMCP gateway:
{
"mcpServers": {
"wordpress": { "url": "https://your-anythingmcp-instance.com/mcp" }
}
}
Why It's Different
Most "ChatGPT + WordPress" integrations are thin REST wrappers. This connector ships:
- Skill tools —
wordpress_skill_*returns step-by-step recipes for SEO pipelines, content refresh, scheduled publishing, internal linking, and media optimisation. The agent reads them on demand, not preloaded. - Enum reference cards —
wordpress_list_*_optionsfor valid statuses, roles, site-health test slugs, and SEO meta keys. - CRUD coverage for posts, pages, taxonomies, media metadata, users, and comments.
Yoast SEO and Rank Math meta keys are supported via wordpress_update_post_meta. Run wordpress_list_seo_meta_keys to see the full catalogue.
Was this guide helpful?