AICOM - AI Commander connects your WordPress site to any AI agent via MCP (Model Context Protocol) or OpenAPI. Use your existing AI subscription — Claude Code, OpenAI Codex, ChatGPT Custom GPTs, Copilot Studio, Dify, n8n, OpenClaw, Celine, Goose, or any MCP-compatible client — to manage content, build pages, run audits, and automate repetitive tasks, all without leaving your AI interface.
No more copy-pasting between your AI assistant and the WordPress dashboard. Describe what you want, and your agent does it — safely, with a full record of every action.
Content Management
Create, update, and publish posts, pages, and custom post types directly from your AI agent. Build and duplicate Elementor pages, manage menus, upload media, update taxonomies, and handle bulk SEO fields including
Yoast SEO meta, titles, and social previews — all in a single conversation. What used to take hours of dashboard work can be delegated to your AI in minutes.
Safety You Control
AICOM puts you in charge at every level:
- Scope-based API keys — each key grants access only to the operations you explicitly allow. One key for read-only content review, another for full publishing access.
- Soft Lock / Hard Lock — freeze all write operations (Soft) or block everything except public tools (Hard) with one click from the admin bar or Safety page.
- Working Hours Schedule — automatically apply Soft or Hard Lock outside your configured working hours and days. Agents can't make changes at night or on weekends unless you explicitly override it.
- Dry-run mode — test any operation before it runs. See exactly what would change without touching live data.
- Confirm flag — destructive operations require an explicit
"confirm": true parameter. Accidental deletions are prevented by design.
Backup & Restore
Before every significant change, your agent can snapshot the current state of a post or term. If something goes wrong, restore the exact previous version in one call. Backups are stored in the database, organised by session, and can be cleaned up automatically based on age or total size.
Full Audit Trail
Every request is logged: timestamp, remote IP, API key label, tool used, parameters, result, and response time. Logs are grouped into
named sessions — when an agent opens a session, all its actions are recorded together so you can review, replay, or undo an entire workflow at once. The Audit Logs page includes a session activity chart and a direct Restore button for each session.
Accessibility Audits — New in v3.2.0
AICOM now includes a dedicated
Accessibility module so your AI agent can audit and fix WCAG issues across your entire site — no external tools or services required:
- Site report — instantly see how many images are missing alt text across your entire media library, with a ranked preview of the top offenders and a percentage score.
- Post audit — scan any post or page for heading hierarchy errors (missing H1, skipped heading levels), images without alt text, and links with non-descriptive anchor text ("click here", "read more"). Each issue is rated by severity and the post receives an overall accessibility score from 0 to 100.
- Fix in place — set alt text on any media library image in one call. Pass an empty string to correctly mark it as decorative (
aria-hidden). Full dry-run support so you can preview changes before saving.
- Screenshot before & after — combine AICOM's audit tools with your AI agent's browser capabilities to capture a visual record of the page before and after remediation.
A typical AI-driven accessibility workflow: run the site report, get the list of problem images, let the agent analyse each image visually and write descriptive alt text, apply the fixes — then run the audit again to confirm the score improved. All in one session, with a full audit trail.
Supported Modules
- WordPress Core — posts, pages, custom post types, terms, meta, options, menus, plugins
- Media — upload, update, delete media; direct file system access
- Users & Roles — create, update, manage users and role assignments
- Backup — per-post and per-term snapshots, session-based restore
- Sessions — named audit sessions with grouped action history
- Accessibility — site-wide alt text audit, post-level WCAG check, alt text fixes
- WooCommerce (optional) — products, categories, settings
- Elementor (optional) — page creation from template, widget inspection, theme builder conditions
- Polylang (optional) — translations, language assignment, string management
- Yoast SEO (optional) — read and write SEO titles, meta descriptions, Open Graph and Twitter card fields; bulk audit across all posts in one session
- Clautron (optional) — blueprint management, capability catalog, event analytics
- ECS (optional) — Ele Custom Skin color schemes, font schemes, custom looks
Who is this for?
- Content teams using Claude, ChatGPT, or any AI assistant who want it to publish and update WordPress content directly
- Agencies managing multiple client sites and wanting AI-assisted workflows with a full paper trail
- Developers building AI-powered WordPress tools or automation pipelines
- Accessibility specialists who want to audit and remediate WCAG issues at scale with AI assistance
- Claude Code users — point AICOM as an MCP server from your terminal and control WordPress alongside your code
- OpenAI Codex users — connect Codex to your site via AICOM's MCP endpoint and let it manage content as part of your dev workflow
- ChatGPT, Copilot Studio, Dify, n8n users — import the OpenAPI schema URL into any OpenAPI-compatible client; all tools are discovered automatically with Bearer auth
- OpenClaw / Celine / Goose users — native MCP connector, works out of the box
How it works
AICOM exposes a secure HTTP endpoint on your WordPress site. Your AI agent sends structured MCP requests, AICOM authenticates the request, checks scopes and lock state, executes the operation, logs it, and returns a structured response.
AI Agent → AICOM Endpoint → WordPress
API Key Scopes
Each API key is granted specific scopes — you control exactly what each AI agent can and cannot do:
read.wp,
write.wp.posts,
manage.taxonomies,
manage.meta,
manage.wordpress.settings,
manage.media,
manage.files,
manage.users,
manage.plugins,
manage.backups,
manage.a11y,
manage.woocommerce.products,
manage.woocommerce.settings,
manage.elementor,
manage.polylang,
manage.yoast,
manage.clautron
Endpoint
REST API:
POST /wp-json/aicom/v1/mcp
Fallback (no mod_rewrite required):
POST /?aicom=1
Health check:
GET /?aicom=1
Authentication
Authorization: Bearer aicom_XXXXXXXX_<secret>
or:
X-API-Key: aicom_XXXXXXXX_<secret>
MCP Request Example
{"jsonrpc":"2.0","method":"tools/call","params":{"name":"wp.posts.list","arguments":{"post_type":"post","posts_per_page":10}},"id":1}
- Upload the
aicom folder to /wp-content/plugins/ or install directly from Plugins → Add New by searching for "AICOM"
- Activate the plugin via Plugins → Installed Plugins
- Go to AICOM → API Keys and click Generate New Key
- Give the key a label (e.g. "OpenClaw agent") and select the scopes you want to grant
- Copy the key immediately — it will not be shown again
- Point your AI agent or MCP client to
https://yoursite.com/wp-json/aicom/v1/mcp
- Pass the key as
Authorization: Bearer <your-key> in every request
Apache note: If the Authorization header is stripped by your server, add this line to
.htaccess:
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
Safety tip: Start with
Soft Lock enabled to limit the agent to read-only operations, then unlock once you're confident in the integration.