MCP Connector For WordPress
Bridges to a WordPress site via the WordPress MCP Adapter, allowing AI agents to discover and execute abilities registered on the WordPress site, such as creating posts, managing content, or other custom capabilities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Connector For WordPresslist all abilities on my WordPress site"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Connector For WordPress
A local MCP server that bridges Claude Desktop (or any compatible MCP host) to your WordPress site via the WordPress MCP Adapter.
Every tool, resource, and prompt registered through the WordPress Abilities API is discovered at runtime and proxied transparently. The connector itself has no built-in WordPress knowledge — the available capabilities depend entirely on the abilities registered on your WordPress site.
Prerequisites
Requirement | Notes |
Node.js ≥ 18 | Claude Desktop ships with Node.js 24.13.0 built-in |
WordPress ≥ 6.8 | Target site |
Must be installed on the WordPress site — this determines what capabilities are available | |
WordPress Abilities API | Abilities must be registered via |
Related MCP server: ItchWPMCP
Installation
1. Download
Download the latest .mcpb bundle from GitHub Releases.
2. Generate a WordPress Application Password
Log in to WordPress as an administrator
Go to Users → Your Profile
Scroll to Application Passwords
Enter a name (e.g.
Claude Desktop) and click Add New Application PasswordCopy the generated password — it will look like
xxxx xxxx xxxx xxxx xxxx xxxx
3. Install in Claude Desktop
Open Claude Desktop and go to Settings → Extensions
Click Advanced settings
Click Install Extension
Browse and select the downloaded
.mcpbfileClick Install, then click Install again to confirm
Fill in your WordPress site URL, username, and Application Password, then click Save
Set Tool permissions — allow the read-only tools (Discover Abilities, Get Ability Info) and the write tool (Execute Ability) as needed
Enable the extension with the toggle
Configuration reference
Variable | Required | Description |
| Yes | Base URL of your WordPress site, e.g. |
| Yes | WordPress administrator username |
| Yes | Application Password (spaces allowed) |
| No | Set to |
Available tools
The connector exposes three meta-tools that dynamically proxy capabilities from the WordPress MCP Adapter:
Tool | Description | Hint |
| List all abilities (tools, resources, prompts) available on the connected WordPress site, with their names, descriptions, and input schemas | Read-only |
| Execute any ability by name with the given arguments — available abilities depend on what is registered on your WordPress site | Destructive |
| Get detailed information about a specific ability including its full input/output schema | Read-only |
What capabilities will be available?
The connector discovers all abilities at runtime from your WordPress site via the WordPress MCP Adapter. The adapter converts abilities registered through the WordPress Abilities API (wp_register_ability()) into MCP tools, resources, and prompts.
The exact set of capabilities depends on:
Which plugins or themes register abilities on your site
How those abilities are configured
Which users have permission to access them
Use mcp-adapter-discover-abilities to see what is available on your specific site. The adapter may expose tools (executable actions), resources (read-only data endpoints), and prompts (guided workflow templates).
Usage examples
Example 1: Discover available abilities
User prompt:
What tools are available on my WordPress site?
What happens:
The agent calls mcp-adapter-discover-abilities to list all tools, resources, and prompts registered on the WordPress site.
Expected output: A categorised list of all abilities available on the connected site, with their names, descriptions, and input schemas.
Example 2: Get details about a specific ability
User prompt:
Tell me more about the "create-post" tool — what arguments does it accept?
What happens:
The agent calls mcp-adapter-get-ability-info with name: "create-post" to retrieve the full input/output schema.
Expected output: The tool's description, required and optional parameters, their types, and any constraints.
Note: The tool name
create-postis used here as an illustration. The actual tools available depend on the abilities registered on your WordPress site. Use the discover ability first to see what is available.
Example 3: Execute an ability
User prompt:
Create a draft blog post titled "Spring Product Launch" with a short intro paragraph.
What happens:
The agent calls
mcp-adapter-discover-abilities(if it hasn't already) to find the appropriate tool.The agent calls
mcp-adapter-execute-abilitywith the tool name and arguments discovered in step 1.The WordPress site processes the request and returns the result.
Expected output: The result from the WordPress site, such as a confirmation with a post ID and permalink.
Note: This example assumes a post-creation ability is registered on your WordPress site. The exact tool names and arguments depend on the abilities registered via the WordPress Abilities API.
Troubleshooting
404 — endpoint not found
Confirm the WordPress MCP Adapter is installed
Confirm abilities are registered on the site (the adapter exposes abilities registered via the Abilities API)
Verify
WP_API_URLhas no trailing slash and matches the site URL exactly
401 / 403 — authentication failed
Re-generate the Application Password in WordPress
Ensure the username matches exactly (case-sensitive)
Check that the user has permission to access the registered abilities
Timeout errors
The WordPress site may be slow or unreachable; check server response times
Set
DEBUG=mcp-connectorto see detailed request logs
Enable debug logging
Add "DEBUG": "mcp-connector" to the env section in your MCP config. All debug output goes to stderr and will appear in Claude Desktop's MCP server logs.
Privacy
This MCP server acts as a transparent bridge between the MCP host (e.g. Claude Desktop) and your WordPress site. It does not collect, store, or transmit any data to third parties.
All communication flows directly from the local MCP server to your WordPress site over HTTPS using your provided credentials. No analytics, telemetry, or tracking is included.
For the full privacy policy, see PRIVACY.md.
Support
Issues: GitHub Issues
Author: Valu Digital Oy
Development
# Clone and install
git clone https://github.com/valu-digital/mcp-connector-for-wordpress.git
cd mcp-connector-for-wordpress
npm install
# Build
npm run build
# Build in watch mode
npm run dev
# Run all checks (typecheck + lint + format)
npm run check
# Run directly with env vars
WP_API_URL=https://your-site.com \
WP_USERNAME=admin \
WP_APP_PASSWORD="xxxx xxxx xxxx xxxx" \
DEBUG=mcp-connector \
node dist/index.jsTo test with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-connector-for-wordpress": {
"command": "node",
"args": ["/absolute/path/to/mcp-connector-for-wordpress/dist/index.js"],
"env": {
"WP_API_URL": "https://your-site.com",
"WP_USERNAME": "your-wp-username",
"WP_APP_PASSWORD": "xxxx xxxx xxxx xxxx xxxx xxxx"
}
}
}
}The server speaks MCP over stdin/stdout. Use the MCP Inspector for interactive testing:
npx @modelcontextprotocol/inspector node dist/index.jsLicense
GPL-2.0-or-later
Credits
Built by Valu Digital Oy.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/valu-digital/mcp-connector-for-wordpress'
If you have feedback or need assistance with the MCP directory API, please join our Discord server