
WordPress MCP Server
Enables AI assistants to interact with WordPress sites through REST APIs, allowing programmatic management of posts, users, comments, categories, and tags with secure authentication.
Tools
get-users
Get a list of users from a WordPress site with advanced filtering options
get-user
Get a specific user by ID
create-user
Create a new WordPress user
update-user
Update an existing WordPress user
delete-user
Delete a WordPress user
list-posts
Get a list of posts with comprehensive filtering options
get-post
Get a specific post by ID
create-post
Create a new WordPress post
update-post
Update an existing WordPress post
delete-post
Delete a WordPress post
get-comments
Get a list of comments from a WordPress site
create-comment
Create a new comment on a WordPress post
get-stats-highlights
Get highlight metrics for a WordPress site from the last seven days
get-stats-summary
View a site's summarized views, visitors, likes and comments
get-top-posts
View a site's top posts and pages by views
get-referrers
View a site's referrers
get-country-views
View a site's views by country
get-post-stats
View a specific post's views
get-site-stats
Get comprehensive stats for a WordPress site
report-referrer-spam
Report a referrer as spam
remove-referrer-spam
Unreport a referrer as spam
get-clicks
View a site's outbound clicks
get-search-terms
View search terms used to find the site
get-streak-stats
Get stats for Calendar Heatmap showing publishing activity
list-categories
Get a list of categories with filtering options
get-category
Get a specific category by ID
create-category
Create a new WordPress category
update-category
Update an existing WordPress category
delete-category
Delete a WordPress category
README
Comprehensive WordPress MCP Server
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with WordPress sites through the WordPress REST API. This server provides tools for managing all aspects of WordPress programmatically, including posts, users, comments, categories, tags, and custom endpoints.
<a href="https://glama.ai/mcp/servers/@prathammanocha/wordpress-mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@prathammanocha/wordpress-mcp-server/badge" alt="WordPress Server MCP server" /> </a>
Features
Post Management
- Create, retrieve, update, and delete WordPress posts
- Filter posts by various parameters
- Pagination support for post listings
User Management
- Retrieve user information by ID or login
- Update user details
- Delete users
Comments Management
- Create, retrieve, update, and delete comments
- Filter comments by post
- Pagination support for comment listings
Taxonomy Management
- Manage categories and tags
- Create, retrieve, update, and delete taxonomies
- Find categories and tags by slug
Site Information
- Retrieve general WordPress site information
Custom Requests
- Support for custom REST API endpoints
- Custom HTTP methods (GET, POST, PUT, DELETE)
- Custom data and parameters
Prerequisites
- Node.js v18 or higher
- A WordPress site with REST API enabled
- WordPress application password for authentication
Installation
- Clone this repository:
git clone [repository-url]
cd wordpress-mcp-server
- Install dependencies:
npm install
- Build the server:
npm run build
WordPress Configuration
Before using the server, you need to set up your WordPress site:
- Ensure your WordPress site has REST API enabled (enabled by default in WordPress 4.7+)
- Create an application password:
- Log in to your WordPress admin panel
- Go to Users → Profile
- Scroll down to "Application Passwords"
- Enter a name for the application (e.g., "MCP Server")
- Click "Add New Application Password"
- Copy the generated password (you won't be able to see it again)
MCP Configuration
Add the server to your MCP settings file (usually located at ~/AppData/Roaming/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
):
{
"mcpServers": {
"wordpress": {
"command": "node",
"args": ["path/to/wordpress-mcp-server/build/index.js"]
}
}
}
Available Tools
Post Management
1. create_post
Creates a new WordPress post.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordtitle
(required): Post titlecontent
(required): Post contentstatus
(optional): Post status ('draft', 'publish', or 'private', defaults to 'draft')
Example:
{
"tool": "create_post",
"siteUrl": "https://example.com",
"username": "admin",
"password": "xxxx xxxx xxxx xxxx",
"title": "My First Post",
"content": "Hello, world!",
"status": "draft"
}
2. get_posts
Retrieves WordPress posts with pagination.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordperPage
(optional): Number of posts per page (default: 10)page
(optional): Page number (default: 1)customParams
(optional): Additional query parameters
Example:
{
"tool": "get_posts",
"siteUrl": "https://example.com",
"username": "admin",
"password": "xxxx xxxx xxxx xxxx",
"perPage": 5,
"page": 1
}
3. update_post
Updates an existing WordPress post.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordpostId
(required): ID of the post to updatetitle
(optional): New post titlecontent
(optional): New post contentstatus
(optional): New post status ('draft', 'publish', or 'private')
Example:
{
"tool": "update_post",
"siteUrl": "https://example.com",
"username": "admin",
"password": "xxxx xxxx xxxx xxxx",
"postId": 123,
"title": "Updated Title",
"content": "Updated content",
"status": "publish"
}
4. delete_post
Deletes a WordPress post.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordpostId
(required): ID of the post to delete
Example:
{
"tool": "delete_post",
"siteUrl": "https://example.com",
"username": "admin",
"password": "xxxx xxxx xxxx xxxx",
"postId": 123
}
User Management
1. get_users
Retrieves WordPress users.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordperPage
(optional): Number of users per page (default: 10)page
(optional): Page number (default: 1)
2. get_user
Retrieves a specific WordPress user by ID.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passworduserId
(required): ID of the user to retrieve
3. get_user_by_login
Retrieves a WordPress user by login name.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passworduserLogin
(required): Login name of the user to retrieve
Comment Management
1. get_comments
Retrieves WordPress comments.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordperPage
(optional): Number of comments per page (default: 10)page
(optional): Page number (default: 1)postIdForComment
(optional): Filter comments by post ID
2. create_comment
Creates a new comment on a post.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordpostIdForComment
(required): ID of the post to comment oncommentContent
(required): Content of the commentcustomData
(optional): Additional comment data
Category and Tag Management
1. get_categories
Retrieves WordPress categories.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordperPage
(optional): Number of categories per page (default: 10)page
(optional): Page number (default: 1)
2. create_category
Creates a new WordPress category.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordcategoryName
(required): Name of the category to createcustomData
(optional): Additional category data (description, parent, etc.)
Custom Requests
1. custom_request
Makes a custom request to any WordPress REST API endpoint.
Parameters:
siteUrl
(required): Your WordPress site URLusername
(required): WordPress usernamepassword
(required): WordPress application passwordcustomEndpoint
(required): API endpoint pathcustomMethod
(optional): HTTP method ('GET', 'POST', 'PUT', 'DELETE', default: 'GET')customData
(optional): Data for POST/PUT requestscustomParams
(optional): URL parameters for GET requests
Example:
{
"tool": "custom_request",
"siteUrl": "https://example.com",
"username": "admin",
"password": "xxxx xxxx xxxx xxxx",
"customEndpoint": "wp/v2/media",
"customMethod": "GET",
"customParams": {
"per_page": 5
}
}
Response Format
All tools return responses in the following format:
Success Response
{
"success": true,
"data": {
// WordPress API response data
},
"meta": {
// Optional metadata (pagination info, etc.)
}
}
Error Response
{
"success": false,
"error": "Error message here"
}
Security Considerations
- Always use HTTPS URLs for your WordPress site
- Use application passwords instead of your main WordPress password
- Keep your application passwords secure and don't share them
- Consider using WordPress roles and capabilities to limit access
- Regularly rotate application passwords
Development
To contribute to the development:
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests (when available)
- Submit a pull request
For development mode with automatic recompilation:
npm run dev
License
This project is licensed under the ISC License.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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.