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.
Conectar
Añade esta configuración a .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>"
}
}
}
}Herramientas (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)"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Estrellas
- 0
- Última actualización
- 12 de julio de 2026