WordPress MCP Server (Remote)

Productivitystdio
Repository

Automattic's MCP server that connects AI assistants such as Claude Desktop to WordPress sites. Supports multiple authentication methods (OAuth 2.0, JWT, and application passwords) and exposes the WordPress REST and WP-CLI capabilities so agents can read and manage posts, pages, media, and site settings through natural language.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "wordpress": {
      "command": "npx",
      "args": [],
      "env": {
        "WORDPRESS_API_URL": "<YOUR_WORDPRESS_API_URL>",
        "WORDPRESS_USERNAME": "<YOUR_WORDPRESS_USERNAME>",
        "WORDPRESS_PASSWORD": "<YOUR_WORDPRESS_PASSWORD>"
      }
    }
  }
}

Tools (2)

list_posts

List posts from the connected WordPress site with optional filters.

{
  "type": "object",
  "properties": {
    "search": {
      "type": "string",
      "description": "Optional search term"
    },
    "status": {
      "type": "string",
      "description": "Filter by post status (publish, draft, pending)"
    }
  }
}

create_post

Create a new post or page on the WordPress site.

{
  "type": "object",
  "required": [
    "title",
    "content"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "Post title"
    },
    "status": {
      "type": "string",
      "description": "Post status (draft or publish)"
    },
    "content": {
      "type": "string",
      "description": "Post content (HTML or blocks)"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Automattic (@Automattic)
Repository
https://github.com/Automattic/mcp-wordpress-remote
Stars
0
Last Updated
July 12, 2026