ワンクリックで
status
Check mumcp plugin status on a connected WordPress site — version, Elementor, capabilities, and available updates.
メニュー
Check mumcp plugin status on a connected WordPress site — version, Elementor, capabilities, and available updates.
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.
MCP connection reference for Claude Code, Claude Desktop, Cursor, and Windsurf. Use /mumcp:setup for first-time guided setup.
First-time setup — install mumcp on WordPress, generate an API key, and configure your MCP client. Start here.
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 | status |
| description | Check mumcp plugin status on a connected WordPress site — version, Elementor, capabilities, and available updates. |
| user-invocable | true |
Check the current state of a mumcp-connected WordPress site. $ARGUMENTS = site name or leave blank for the active connection.
Call wp_site_info() to get a full status snapshot:
wp_site_info()
Look for:
container vs classic)Fetch the update manifest:
wp_check_update()
Or check manually:
curl -s https://mumega.com/spai-updates/version.json | jq '{version, changelog}'
If an update is available, trigger it:
wp_trigger_update()
Call wp_introspect() for the full capability map — shows which tool categories are enabled for your current API key role.
Key things to verify:
elementor tools available → Elementor is active and connectedwoocommerce tools available → WooCommerce detectedlearnpress tools available → LearnPress detectedadmin tools available → key has admin roleCurrent known issues and planned work on the plugin:
Notable open issues:
Check which keys exist and their roles:
wp_list_api_keys()
Create a restricted key for a specific use case:
wp_create_api_key(label="designer-key", role="designer")
Revoke a compromised key:
wp_revoke_api_key(key_id=KEY_ID)
| Symptom | Likely Cause | Fix |
|---|---|---|
| Tools missing | Key role too restricted | Create new key with wider role |
| Elementor tools unavailable | Elementor not active | Activate Elementor in WP Admin |
| Slow responses | Large site, no caching | Enable caching plugin |
| 429 Too Many Requests | Rate limit hit | Check wp_get_rate_limits() |
| Update stuck | Stale update option | Clear spai_update_info option |