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)"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 星标
- 0
- 最后更新
- 2026年7月12日