From mcpwp
MCP connection reference for Claude Code, Claude Desktop, Cursor, and Windsurf. Use /mcpwp:setup for first-time guided setup.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mcpwp:connectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick reference for connecting different MCP clients to a mcpwp-enabled WordPress site. $ARGUMENTS = client name or site URL + API key.
Quick reference for connecting different MCP clients to a mcpwp-enabled WordPress site. $ARGUMENTS = client name or site URL + API key.
First time? Run
/mcpwp:setupinstead — it walks you through everything interactively.
Replace YOUR-SITE.com and mcpwp_YOUR_KEY in every config below.
Global (~/.claude/settings.json):
{
"mcpServers": {
"mcpwp": {
"url": "https://YOUR-SITE.com/wp-json/mcpwp/v1/mcp",
"headers": {"X-API-Key": "mcpwp_YOUR_KEY"}
}
}
}
Per-project (.mcp.json in project root):
{
"mcpServers": {
"mcpwp": {
"url": "https://YOUR-SITE.com/wp-json/mcpwp/v1/mcp",
"headers": {"X-API-Key": "mcpwp_YOUR_KEY"}
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mcpwp": {
"url": "https://YOUR-SITE.com/wp-json/mcpwp/v1/mcp",
"headers": {"X-API-Key": "mcpwp_YOUR_KEY"}
}
}
}
Restart Claude Desktop after saving.
Settings > MCP Servers > Add:
https://YOUR-SITE.com/wp-json/mcpwp/v1/mcpX-API-Key: mcpwp_YOUR_KEYSettings > MCP > Add Server:
https://YOUR-SITE.com/wp-json/mcpwp/v1/mcp{"X-API-Key": "mcpwp_YOUR_KEY"}Use a unique name per site in mcpServers:
{
"mcpServers": {
"mcpwp-staging": {
"url": "https://staging.example.com/wp-json/mcpwp/v1/mcp",
"headers": {"X-API-Key": "mcpwp_STAGING_KEY"}
},
"mcpwp-prod": {
"url": "https://example.com/wp-json/mcpwp/v1/mcp",
"headers": {"X-API-Key": "mcpwp_PROD_KEY"}
}
}
}
After saving config, call wp_introspect() — returns site info, available tools, and capabilities.
mcpwp_.https://YOUR-SITE.com/wp-json/mcpwp/v1/site-infoGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mumega-com/mcpwp-claude-plugin --plugin mcpwp