content
WordPress MCP Server
Manage your WordPress site from Claude Code. Create posts, moderate comments, organize categories, and hit any REST API endpoint.
Pricing: free — Free and open source. Requires a WordPress site with REST API enabled (WordPress 4.7+).
Features
- Post management with create, update, delete, and pagination
- User management with profile details
- Comment management and moderation
- Category and tag management
- Custom REST API endpoint support for plugins
- Site information and health checks
Setup Instructions
1. Make sure your WordPress site has REST API enabled (WordPress 4.7+)
2. Clone and build the server:
``
bash
git clone https://github.com/prathammanocha/wordpress-mcp-server.git
cd wordpress-mcp-server
npm install && npm run build
`
3. Add to your Claude MCP settings:
`json
{
"mcpServers": {
"wordpress": {
"command": "node",
"args": ["path/to/wordpress-mcp-server/build/index.js"]
}
}
}
``
4. The server accepts siteUrl, username, and password as tool parameters at runtime
5. Restart Claude and verify the connectionAdded: 2026-03-01