Elementify MCP
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., "@Elementify MCPlist all my Elementor templates"
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.
Elementeer MCP
Public mirror. The canonical repository is hosted on our self-hosted git. This GitHub copy is a read-only mirror kept in sync for visibility and installation. Bug reports are welcome via Issues; pull requests are applied upstream and synced back here.
The Model Context Protocol server connecting AI agents to Elementeer-powered WordPress sites.
A Node.js MCP server with 128+ tools in the Free tier, 250+ tools total, 65 fine-grained capabilities, and L0–L3 governance for safe AI-agent operation. Handles template composition, site assessment, brand setup, creator workflows, theme building, navigation, media, SEO, performance, translation, accessibility, LMS, charity, booking, e-commerce, and addon ecosystem management — all through a single protocol surface.
Companion plugin: elementeer/elementeer — exposes
/wp-json/elementeer/v1/on your WordPress site.
Quick Start
1. Install the WordPress plugin
Download from elementeer/elementeer → Upload → Activate → Settings → Elementeer MCP → Generate Key.
2. Install the MCP server
npm install -g @elementeer/mcp
elementeer-mcp init # creates ~/.elementeer/config.json3. Configure your sites
Edit ~/.elementeer/config.json:
{
"sites": [
{
"id": "my-site",
"name": "My WordPress Site",
"url": "https://yoursite.com",
"apiKey": "ek_your_key_here",
"default": true
}
]
}4. Add to your MCP client
{
"mcpServers": {
"elementeer": {
"command": "elementeer-mcp"
}
}
}From Capacium
cap install elementeer-mcpRelated MCP server: TanukiMCP
Tools
Template Library
Tool | Capability |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Site Intelligence
Tool | Capability |
|
|
|
|
|
|
|
|
|
|
Brand & Design
Tool | Capability |
|
|
|
|
|
|
Content
Tool | Capability |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Navigation
Tool | Capability |
|
|
|
|
|
|
|
|
Media
Tool | Capability |
|
|
|
|
|
|
|
|
|
|
|
|
SEO
Tool | Capability |
|
|
|
|
Governance
Tool | Capability |
|
|
|
|
|
|
|
|
Integration Families
All adapters auto-detect their respective plugins. Tools for WooCommerce, Voxel, Amelia booking, LearnDash/Tutor LMS, GiveWP/Charitable, accessibility (Ally), translation (WPML/Polylang), and addon ecosystem analytics — each with domain-appropriate read/write operations, widget inventories, usage tracking, and overlap detection.
Governance Levels
Elementeer enforces a four-tier governance model for safe AI operation:
Level | Description | Behavior |
L0 | Read-only inspection | No consent needed — list, get, assess |
L1 | Safe writes | Auto-executed — create, update metadata |
L2 | Impactful writes | Auto-queued for human review — layout changes, brand setup |
L3 | High-risk operations | Block until explicit consent provided — deletions, plugin conflict tests |
L2 tools call queue_change automatically. L3 tools require consent: true in the request. This gives AI agents the freedom to propose meaningful changes while keeping site owners in control.
Permission Architecture
Layer 1 — API Key Capabilities. Each key carries an explicit list of domain capabilities. A read-only key returns elementeer_insufficient_scope — not elementeer_invalid_key — on any write attempt, so the agent can guide the user precisely.
Layer 2 — Governance Settings. Site administrators configure allowed_capabilities in the WordPress admin. Even if a key has a capability, if governance blocks it, the server returns elementeer_governance_blocked. Site owners lock down entire domains without revoking keys.
The MCP server maps these error codes to typed ElementeerErrorCode values so AI clients receive actionable error information.
Product Tiers
Free | Advanced | |
Tools | 128+ | 250+ |
Sites | Unlimited | Unlimited |
Template CRUD | ✓ | ✓ |
Site Assessment & Recommendations | ✓ | ✓ |
Brand Setup Wizard | ✓ | ✓ |
Creator Light | ✓ | ✓ |
Navigation & Content CRUD | ✓ | ✓ |
Media Library | ✓ | ✓ |
SEO Meta | ✓ | ✓ |
Performance Basics | ✓ | ✓ |
Addon Detection (11 adapters) | ✓ | ✓ |
Wizard Workflows (5 families) | ✓ | ✓ |
WooCommerce | — | ✓ |
Amelia Booking | — | ✓ |
AI Batch Translation | — | ✓ |
Snapshots & Versioning | — | ✓ |
Design Token Extraction | — | ✓ |
Change Review Queue | — | ✓ |
Performance Deep-Dive | — | ✓ |
Studio Orchestration | — | 🔮 (Future) |
Architecture
elementeer-mcp/
├── mcp-server/ # TypeScript MCP server
│ ├── src/
│ │ ├── index.ts # Server entry point & tool registration
│ │ ├── client.ts # Axios HTTP client for WordPress API
│ │ ├── config.ts # ~/.elementeer/config.json management
│ │ └── tools/ # 128+ tool implementations
│ ├── dist/ # Compiled output (npm entry: dist/index.js)
│ └── package.json # @elementeer/mcp v2.1.4
│
├── shared/ # Shared TypeScript types & validation
│ ├── src/
│ └── package.json # @elementeer/shared
│
├── mirror/ # Free mirror staging & sync scripts
│
├── capability.yaml # MCP capability manifest (65 capabilities)
├── TIERS.md # Tier comparison & pricing logic
├── CHANGELOG.md
├── ROADMAP.md
└── packages/ # npm workspace rootTech stack: TypeScript 5.4+ (strict mode), Zod validation, Axios HTTP client, Vitest test runner, npm workspaces.
Agent Setup
Elementeer MCP works with any MCP-compatible client.
Claude Desktop
{
"mcpServers": {
"elementeer": { "command": "elementeer-mcp" }
}
}Cursor
{
"mcpServers": {
"elementeer": { "command": "elementeer-mcp" }
}
}OpenCode
opencode mcp add elementeer -- elementeer-mcpAntigravity / Codex
As configured in their respective mcpServers settings — use elementeer-mcp as the command and add site configuration in ~/.elementeer/config.json.
Capacium
cap install elementeer-mcpDevelopment
npm install
npm run build
npm run test --workspace=mcp-server
npm run test:coverage --workspace=mcp-server
npm run test:watch --workspace=mcp-server
npm run test --workspace=sharedContributing
Fork and clone
Create a branch:
git checkout -b feat/your-featureMake changes with tests
Run
npm testOpen a pull request using the template
Links
Documentation: docs.elementeer.xyz
WordPress Plugin: github.com/elementeer/elementeer
Conversion Bridge: github.com/elementeer/elementeer-bridge
Pro Addon: github.com/elementeer/elementeer-pro (private)
License
MCP Server: Apache-2.0
Bundled Plugin (Free): GPL-2.0-or-later — see elementeer/elementeer.
Pro Addon: Proprietary — see elementeer/elementeer-pro (private).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA personality-based MCP server that enables AI assistants to manage WordPress content through natural language by mapping human intents to semantic operations. It provides role-appropriate tools for drafting, editing, and publishing while handling transparent format conversions and native permission enforcement.Last updated663ISC
- Alicense-qualityDmaintenanceA comprehensive MCP server for WordPress automation that enables users to manage content, themes, and site configurations using AI-driven workflows and the WordPress REST API. It provides a wide array of tools for site planning, management, and optimization compatible with tools like Cursor and Claude.Last updated661ISC
- FlicenseBqualityAmaintenanceMCP server that connects AI clients to WordPress for content management, site settings, Elementor editing, and more via a secure API.Last updated60
- Alicense-qualityBmaintenanceAn MCP server that enables AI agents to manage WordPress sites, including Elementor page building, content CRUD, plugin management, and site configuration via the WordPress REST API.Last updated66ISC
Related MCP Connectors
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
WordPress MCP server: publish posts, AI images, SEO and full site management, self-hosted
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/elementeer/elementeer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server