wordpress-mcp
MCP server for WordPress REST API that enables managing posts, pages, media, comments, categories, tags, and users through 20 tools.
README
WordPress MCP Server
MCP (Model Context Protocol) server for WordPress REST API. Manage posts, pages, media, comments, categories, tags, and users through 20 tools. Secure and optimized edition.
Works with Claude Desktop, Cursor, VS Code, and any MCP client.
Quick Start
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"wordpress": {
"command": "npx",
"args": ["-y", "@alexgenovese/wordpress-mcp"],
"env": {
"WORDPRESS_URL": "https://your-site.com",
"WORDPRESS_USERNAME": "your-username",
"WORDPRESS_APP_PASSWORD": "your-application-password"
}
}
}
}
Cursor / VS Code
Add to MCP settings:
{
"mcpServers": {
"wordpress": {
"command": "npx",
"args": ["-y", "@alexgenovese/wordpress-mcp"],
"env": {
"WORDPRESS_URL": "https://your-site.com",
"WORDPRESS_USERNAME": "your-username",
"WORDPRESS_APP_PASSWORD": "your-application-password"
}
}
}
}
HTTP Mode (Streamable HTTP)
For remote deployment or shared access:
WORDPRESS_URL=https://your-site.com WORDPRESS_USERNAME=user WORDPRESS_APP_PASSWORD=pass npx @alexgenovese/wordpress-mcp --http
Server starts on port 3000 (configurable via PORT env var). MCP endpoint: http://localhost:3000/mcp
Configuration
| Environment Variable | Required | Description |
|---|---|---|
WORDPRESS_URL |
Yes | WordPress site URL (e.g. https://your-site.com) |
WORDPRESS_USERNAME |
Yes | WordPress username |
WORDPRESS_APP_PASSWORD |
Yes | Application Password (see below) |
PORT |
No | Port for HTTP server (default: 3000, only used with --http) |
How to Create an Application Password
- Go to your WordPress Admin → Users → Profile
- Scroll down to Application Passwords
- Enter a name (e.g. "MCP Server") and click Add New Application Password
- Copy the generated password
Important: WordPress displays the password with spaces for readability (e.g.
cUAn CKZ1 u5DN). The server automatically removes spaces — you can paste it as-is.
All Tools (20 tools)
Posts (5 tools)
| Tool | Description |
|---|---|
wp_list_posts |
List posts with filters (status, search, per_page) |
wp_get_post |
Get single post with full content |
wp_create_post |
Create post (title, content, status, categories, tags) |
wp_update_post |
Update post fields |
wp_delete_post |
Delete post (moves to trash) |
Pages (5 tools)
| Tool | Description |
|---|---|
wp_list_pages |
List pages with status filter |
wp_get_page |
Get single page with full content |
wp_create_page |
Create page (title, content, status, parent) |
wp_update_page |
Update page fields |
wp_delete_page |
Delete page |
Media (2 tools)
| Tool | Description |
|---|---|
wp_list_media |
List media files with type filter |
wp_delete_media |
Permanently delete media file |
Comments (4 tools)
| Tool | Description |
|---|---|
wp_list_comments |
List comments, filter by post |
wp_create_comment |
Create comment on post |
wp_update_comment |
Moderate comment (approve/hold/spam/trash) |
wp_delete_comment |
Permanently delete comment |
Taxonomy (2 tools)
| Tool | Description |
|---|---|
wp_list_categories |
List all categories with post counts |
wp_list_tags |
List all tags with post counts |
Users & Site (2 tools)
| Tool | Description |
|---|---|
wp_list_users |
List users with roles |
wp_get_site_info |
Get site name, description, URL, timezone |
Requirements
- Node.js 18+
- WordPress with REST API enabled (enabled by default)
- Application Password (WordPress 5.6+)
For Developers
git clone https://github.com/alexgenovese/mcp-wordpress.git
cd mcp-wordpress
npm install
npm run build
# Run in stdio mode
WORDPRESS_URL=https://your-site.com WORDPRESS_USERNAME=user WORDPRESS_APP_PASSWORD=pass npm start
# Run in dev mode (hot reload)
WORDPRESS_URL=https://your-site.com WORDPRESS_USERNAME=user WORDPRESS_APP_PASSWORD=pass npm run dev
# Run in HTTP mode
WORDPRESS_URL=https://your-site.com WORDPRESS_USERNAME=user WORDPRESS_APP_PASSWORD=pass npm start -- --http
License
MIT License - see LICENSE
Copyright (c) 2026 Alex Genovese
Links
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.