wp-mcp-control-server
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-mcp-control-serverCreate a new page titled 'About Us' using the default template"
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 Control — MCP Server
TypeScript MCP server that connects Cursor, Claude Desktop, and other MCP clients to the WP MCP Control WordPress plugin.
Quick Install (new computer)
git clone https://github.com/mpierre135/wp-mcp-control-server.git
cd wp-mcp-control-server
npm install
npm run build
cp .env.example .env
# Edit .env with your site URL and tokenThen add to Claude Desktop or Cursor (see below).
Related MCP server: TanukiMCP
Setup
npm install
cp .env.example .env
# Edit .env with your credentials
npm run build
npm startEnvironment Variables
Variable | Required | Default | Description |
| Yes | — | WordPress site URL (no trailing slash) |
| Yes | — | API token from plugin settings |
| No |
| Block destructive operations |
| No |
| Validate without making changes |
Claude Desktop Config
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"wp-mcp-control": {
"command": "node",
"args": ["/absolute/path/to/wp-mcp-control-server/dist/index.js"],
"env": {
"WP_MCP_SITE_URL": "https://example.com",
"WP_MCP_TOKEN": "your-token",
"WP_MCP_SAFE_MODE": "true",
"WP_MCP_DRY_RUN": "false"
}
}
}
}Restart Claude Desktop after saving.
Cursor Config
{
"mcpServers": {
"wp-mcp-control": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"env": {
"WP_MCP_SITE_URL": "https://example.com",
"WP_MCP_TOKEN": "your-token",
"WP_MCP_SAFE_MODE": "true",
"WP_MCP_DRY_RUN": "false"
}
}
}
}Development
npm run dev # Watch mode
npm run build # Compile to dist/Tool Catalog
Site
wp_health_check— Health and statuswp_get_site_info— Site metadatawp_list_themes/wp_list_plugins— Read-only inventorywp_get_settings/wp_update_settings— Safe settings
Pages
wp_list_pages,wp_get_page,wp_create_page,wp_update_page,wp_delete_pagewp_create_landing_page— Structured landing page builder
Posts
wp_list_posts,wp_get_post,wp_create_post,wp_update_post,wp_delete_post
Media
wp_list_media,wp_get_mediawp_upload_media_from_url,wp_upload_media_from_base64wp_update_media_metadata,wp_delete_media
Taxonomies
wp_list_categories,wp_create_category,wp_update_category,wp_delete_categorywp_list_tags,wp_create_tag,wp_update_tag,wp_delete_tag
Menus
wp_list_menus,wp_get_menu_itemswp_create_menu_item,wp_update_menu_item,wp_delete_menu_itemwp_assign_menu_location
Other
wp_search_content— Unified searchwp_batch_operations— Batch API callswp_get_activity_log,wp_restore_snapshotwp_list_redirects,wp_create_redirect,wp_update_redirect,wp_delete_redirectwp_export_site_structure,wp_generate_sitemap
Elementor (Phase 1–3)
wp_elementor_get_widget_catalog— Widget catalog with editable settingswp_elementor_get_structure— Full Elementor element treewp_elementor_list_elements— Flat list of widgets with text previewswp_elementor_find_widgets— Filter by widget_typewp_elementor_update_element— Update catalog-editable widget by element IDwp_elementor_update_text— Find widget by text and replacewp_elementor_update_button— Update button text/URL by match_textwp_elementor_update_image— Update image by element_id or match_urlwp_elementor_insert_widget— Add widget to column/containerwp_elementor_insert_section— Add section (hero/cta/features presets)wp_elementor_remove_element— Delete element by IDwp_elementor_clone_element— Clone subtree with new IDswp_elementor_duplicate_page— Clone Elementor page as draft
Headers Sent to WordPress
Every request includes:
Authorization: Bearer <token>X-WP-MCP-Dry-Run: true|falseX-WP-MCP-Safe-Mode: true|false
These override plugin defaults when set in MCP env vars.
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
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/mpierre135/wp-mcp-control-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server