- Home
- MCP servers
- WordPress Docs
WordPress Docs
- javascript
1
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"freibergergarcia-wordpress-docs-claude-mcp": {
"command": "wordpress-docs-mcp",
"args": []
}
}
}You deploy this MCP server to provide WordPress documentation and development tools directly in Claude conversations. It offers WordPress.org docs, WordPress VIP guides, and function references that you can access during your chats, making it easier to look up information without leaving your workflow.
How to use
You connect your MCP client to the WordPress Docs MCP Server and then call the available tools to search documentation, look up WordPress functions, or explore VIP resources. Use the tools in natural language queries, for example asking to search WordPress docs for a topic, look up a specific function, or fetch VIP guidance. The server handles responses and returns structured results that you can incorporate into your work.
How to install
Prerequisites you need on your machine: Node.js and npm are installed so you can install and run MCP servers.
# Install the MCP server globally
npm install -g wordpress-docs-claude-mcp
Configuration for Claude Code and Claude Desktop
Configure Claude Code to load the MCP server by adding the following to your Claude Code MCP configuration file.
{
"mcpServers": {
"wordpress-docs": {
"command": "wordpress-docs-mcp"
}
}
}
Configure Claude Desktop
Configure Claude Desktop to load the MCP server by adding the following to your Claude Desktop configuration file. Use the appropriate path for your operating system.
{
"mcpServers": {
"wordpress-docs": {
"command": "wordpress-docs-mcp"
}
}
}
Available tools
hello_wp
WordPress-themed greeting tool for testing MCP server connectivity. Takes a name parameter and returns a WordPress-flavored greeting.
wp_search_docs
Search WordPress.org developer documentation with filters for content type such as posts, functions, hooks, or classes.
wp_vip_search
Search WordPress VIP documentation for enterprise features, with optional sections like getting-started, infrastructure, development, and content.
wp_function_lookup
Provide detailed information about a specific WordPress function, hook, or class by name.