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.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .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>"
      }
    }
  }
}

Araçlar (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)"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Automattic (@Automattic)
Repository
https://github.com/Automattic/mcp-wordpress-remote
Yıldızlar
0
Son güncelleme
12 Temmuz 2026