ワンクリックで
connect
MCP connection reference for Claude Code, Claude Desktop, Cursor, and Windsurf. Use /mumcp:setup for first-time guided setup.
メニュー
MCP connection reference for Claude Code, Claude Desktop, Cursor, and Windsurf. Use /mumcp:setup for first-time guided setup.
MCPWP plugin development guide — add tools, bump versions, run tests, use the spai_register_tools hook API. Use when building or modifying the MCPWP WordPress plugin.
Operate a client's WordPress site brand-first and governed — the core loop every marketing/website agent runs on connect. Onboard, read the brand book, then build/edit on-brand with approval-first safety. Use the moment you connect to any mumcp site to do real work.
First-time setup — install mumcp on WordPress, generate an API key, and configure your MCP client. Start here.
Check mumcp plugin status on a connected WordPress site — version, Elementor, capabilities, and available updates.
Modern web design principles for building pages via mumcp — typography, color palettes, card styling, responsive layouts, hero sections. Use before building or redesigning pages.
Build and edit Elementor pages via mumcp — layout modes, widget keys, flex grids, blueprints, validation, CSS regeneration. Use before working with Elementor data.
| name | connect |
| description | MCP connection reference for Claude Code, Claude Desktop, Cursor, and Windsurf. Use /mumcp:setup for first-time guided setup. |
| user-invocable | true |
Quick reference for connecting different MCP clients to a mumcp-enabled WordPress site. $ARGUMENTS = client name or site URL + API key.
First time? Run
/mumcp:setupinstead — it walks you through everything interactively.
Replace YOUR-SITE.com and spai_YOUR_KEY in every config below.
Global (~/.claude/settings.json):
{
"mcpServers": {
"mumcp": {
"url": "https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/mcp",
"headers": {"X-API-Key": "spai_YOUR_KEY"}
}
}
}
Per-project (.mcp.json in project root):
{
"mcpServers": {
"mumcp": {
"url": "https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/mcp",
"headers": {"X-API-Key": "spai_YOUR_KEY"}
}
}
}
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mumcp": {
"url": "https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/mcp",
"headers": {"X-API-Key": "spai_YOUR_KEY"}
}
}
}
Restart Claude Desktop after saving.
Settings > MCP Servers > Add:
https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/mcpX-API-Key: spai_YOUR_KEYSettings > MCP > Add Server:
https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/mcp{"X-API-Key": "spai_YOUR_KEY"}Use a unique name per site in mcpServers:
{
"mcpServers": {
"mumcp-staging": {
"url": "https://staging.example.com/wp-json/site-pilot-ai/v1/mcp",
"headers": {"X-API-Key": "spai_STAGING_KEY"}
},
"mumcp-prod": {
"url": "https://example.com/wp-json/site-pilot-ai/v1/mcp",
"headers": {"X-API-Key": "spai_PROD_KEY"}
}
}
}
After saving config, call wp_introspect() — returns site info, available tools, and capabilities.
spai_.https://YOUR-SITE.com/wp-json/site-pilot-ai/v1/site-info