WP MCP Server
Bridges Claude.ai with one or more WordPress sites, enabling AI agents to interact with WordPress via REST API through the WP MCP Connect plugin.
Click on "Deploy 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 MCP Servercreate a new draft post titled 'Getting Started with WP MCP'"
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 Server
Hosted MCP server that bridges Claude.ai with one or more WordPress sites.
Setup (Ubuntu VPS)
1. Install Node.js
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs2. Deploy the server
# Upload mcp-server/ folder to your VPS, then:
cd mcp-server
npm install
# Copy and edit the .env file
cp .env.example .env
nano .envEdit .env:
PORT=3000
SERVER_URL=https://mcp.yourdomain.com
SECRET_KEY=your_random_secret_key_here3. Run with PM2 (keep alive)
npm install -g pm2
pm2 start src/server.js --name wp-mcp-server
pm2 save
pm2 startup4. Nginx reverse proxy
server {
listen 80;
server_name mcp.yourdomain.com;
location / {
proxy_pass http://localhost:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
# Required for SSE
proxy_buffering off;
proxy_read_timeout 300s;
chunked_transfer_encoding on;
}
}Then add SSL:
sudo apt install certbot python3-certbot-nginx
sudo certbot --nginx -d mcp.yourdomain.com5. Test the server
curl https://mcp.yourdomain.com/healthConnecting a WordPress Site
After installing the WP MCP Connect plugin on WordPress:
Go to Settings → WP MCP Connect
Enter your MCP Server URL (
https://mcp.yourdomain.com)Enter your Admin Key (the
SECRET_KEYfrom.env)Click Register Site
Copy the Connector URL that appears
Paste it into Claude.ai → Settings → Connectors
Architecture
Claude.ai
↓ MCP (SSE)
mcp.yourdomain.com (this server)
↓ REST API + X-MCP-Secret header
yoursite.com/wp-json/wp-mcp-connect/v1/execute
↓
WordPress Abilities Registrymcp
This server cannot be deployed
Maintenance
Related MCP Connectors
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.