wp-mcp
Allows interaction with WooCommerce store data (products, orders, customers, etc.) through the WordPress REST API via the generic REST endpoint.
Provides tools to manage a WordPress site via the REST API: create, read, update, delete posts and pages; manage users, plugins, themes, media, categories, tags, and site settings; also supports calling any custom REST endpoint.
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., "@wp-mcplist my recent posts"
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.
wp-mcp — WordPress connector for Claude
Lets you chat with Claude and have it read and change a WordPress site directly.
Just want to use it, not develop it? Non-technical setup guide for Claude Desktop: INSTALL-DESKTOP.md. Download
dist/wp-mcp.mjs— it is a single self-contained file that needs only Node installed, nonpm install, no cloning.
Works with any self-hosted WordPress 5.6+. Nothing is installed on the site —
it uses the REST API that ships with core, authenticated with an Application
Password. Multiple sites can be configured; every tool takes an optional site.
Install
Requires Node 20+. Pick one of the two.
Option 1 — Single file (fastest, nothing to clone)
curl -fsSL -o ~/wp-mcp.mjs https://raw.githubusercontent.com/amolb1986/wp-mcp/main/dist/wp-mcp.mjs
claude mcp add wordpress -s user -- node ~/wp-mcp.mjsdist/wp-mcp.mjs is a self-contained bundle — no npm install, no dependencies.
Option 2 — Clone (for development, or to run the tests)
git clone https://github.com/amolb1986/wp-mcp.git
cd wp-mcp
npm install
claude mcp add wordpress -s user -- node "$(pwd)/src/index.js"Then connect a WordPress site
# Option 1 (single file) — pass credentials as environment variables:
claude mcp remove wordpress -s user
claude mcp add wordpress -s user \
-e WP_URL=https://example.com \
-e WP_USER=your-username \
-e WP_APP_PASSWORD="abcd efgh ijkl mnop qrst uvwx" \
-- node ~/wp-mcp.mjs
# Option 2 (cloned) — use the setup CLI, which supports multiple sites:
node bin/setup.js add mysite https://example.com your-username "abcd efgh ijkl mnop qrst uvwx"Restart Claude Code, then ask: "list the WordPress sites you can access".
Using Claude Desktop instead? See INSTALL-DESKTOP.md — no terminal needed beyond installing Node.
Setup details
1. Create an Application Password on the site
In wp-admin: Users → Profile → Application Passwords. Name it Claude,
click Add, and copy the generated password (shown once, looks like
abcd efgh ijkl mnop qrst uvwx).
This is not your login password. It can be revoked from the same screen at any time without changing your account, and it inherits your user's capabilities — so an Editor account can edit posts but not touch plugins.
2. Register the site
cd ~/wp-mcp
node bin/setup.js add mysite https://example.com your-username "abcd efgh ijkl mnop qrst uvwx"That verifies the connection immediately and tells you which role you connected as.
Add --read-only to make a site read-only. Useful if you ever point this at production:
node bin/setup.js add prod https://www.example.com me "…" --read-only3. Use it
The connector is registered with Claude Code as wordpress. Restart Claude Code
and ask things like:
list the draft pages on mysite read the "Pricing" page and rewrite the intro to be shorter create a draft post titled "Q3 update" with these bullets … which plugins are active on dev?
Managing sites
node bin/setup.js list # show configured sites
node bin/setup.js test # check every site connects
node bin/setup.js default mysite
node bin/setup.js remove prodCredentials live in ~/.wp-mcp/sites.json, written chmod 600.
Tools
Tool | What it does |
| List configured sites and test each connection |
| Show the authenticated user, roles, capabilities |
| Discover post types and taxonomies, including custom ones |
| List posts/pages/custom types, filtered and searched |
| Fetch one item with its raw block/HTML body |
| Search all content at once |
| Create content (defaults to draft) |
| Update fields on an existing item |
| Trash, or permanently delete with |
| Categories, tags, custom terms |
| Media library; upload from a local path or URL |
| Users and roles |
| List plugins, activate/deactivate |
| Installed themes |
| Read or change site settings |
| Call any REST route — WooCommerce, ACF, menus, plugin namespaces |
wp_rest is the escape hatch: anything the site exposes over REST is reachable
even if there is no dedicated tool for it. wp_rest with path: "" lists every
available route on the site.
Safety
Creating content defaults to draft, never publish.
Deleting trashes by default; permanent deletion needs
force: true.--read-only(orWP_MCP_READONLY=1) rejects every non-GET request.You are limited to whatever the WordPress user can do. For a dev site where Claude should manage plugins, use an Administrator account; to be conservative, use an Editor.
Environment variables
Variable | Purpose |
| Configure a single site without a config file |
| Name for that env-configured site (default |
| Alternate path to |
| Force read-only across all sites |
| Accept self-signed certificates (dev servers only) |
| Request timeout, default 30000 |
Troubleshooting
"Could not reach …" — the site is not reachable from this machine. If it is an
internal dev host, connect to the VPN first. Check with
curl -I https://example.com/.
Self-signed certificate — set WP_MCP_INSECURE_TLS=1.
401 incorrect_password — some hosts strip the Authorization header. Add to
.htaccess on the site:
RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [E=HTTP_AUTHORIZATION:%1]Site behind HTTP Basic auth — that uses the same Authorization header as
Application Passwords and will conflict. Allowlist your IP, or exempt
/wp-json from basic auth.
rest_no_route — that route does not exist on the site. Run wp_rest with
path: "" to see what is actually available.
Tests
npm testtest/smoke.js spawns the real MCP server over stdio against a stub WordPress
REST API and exercises every tool, plus auth failure, unreachable host,
read-only mode, and sites without pretty permalinks. test/cli.js covers the
setup CLI. 71 checks total, no network access needed.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/amolb1986/wp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server