WordPress MCP Server (Remote)

Productivitystdio
Репозиторий

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.

Подключение

Добавьте эту конфигурацию в .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>"
      }
    }
  }
}

Инструменты (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)"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Automattic (@Automattic)
Репозиторий
https://github.com/Automattic/mcp-wordpress-remote
Звёзды
0
Последнее обновление
12 июля 2026 г.