elementor-mcp-agent 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/dist/server.js +10 -0
- package/dist/server.js.map +1 -1
- package/package.json +13 -7
- package/scripts/fetch-elementor-docs.ts +26 -0
- package/scripts/postinstall.cjs +64 -0
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/elementor-mcp-agent)
|
|
4
4
|
[](./LICENSE)
|
|
5
|
+
[](https://glama.ai/mcp/servers/Mogacode-ma/elementor-mcp-agent)
|
|
6
|
+
[](https://github.com/Mogacode-ma/elementor-mcp-agent/stargazers)
|
|
5
7
|
|
|
6
8
|
> **Agency-grade MCP server for WordPress Elementor.** Multi-site management, safe Elementor edits with backup + auto-rollback + CSS flush, template export/import, global widget detection, screenshots, WP-CLI escape hatch.
|
|
7
9
|
|
|
@@ -9,6 +11,20 @@ Built for agencies running many client sites on Elementor / Elementor Pro who wa
|
|
|
9
11
|
|
|
10
12
|
---
|
|
11
13
|
|
|
14
|
+
## How this was built
|
|
15
|
+
|
|
16
|
+
elementor-mcp-agent was built end-to-end with Claude Code over ~48 hours. The process is intentionally open:
|
|
17
|
+
|
|
18
|
+
- Architecture, code, tests, docs — all generated through Claude Code pair-programming sessions
|
|
19
|
+
- The 7 bugs documented in [this post-mortem](https://dev.to/mogacode/7-bugs-i-caught-in-my-mcp-server-before-publishing-and-why-i-almost-shipped-a-data-corruption-5dfd) were caught in real E2E testing against a live WordPress + Elementor install, not after the fact
|
|
20
|
+
- v1.2's post-write verification pattern was shipped 2 hours after a reader's comment ([Mads Hansen on Dev.to](https://dev.to/mogacode/7-bugs-i-caught-in-my-mcp-server-before-publishing-and-why-i-almost-shipped-a-data-corruption-5dfd/comments)) — the changelog credits the source
|
|
21
|
+
|
|
22
|
+
This isn't vibe-coded software thrown over the wall. Every release ran through lint + typecheck + 27 unit tests + (for v1.0) full E2E against a real WordPress install before publishing. The MCP itself hardcodes guardrails that prevent the model from making destructive WP-CLI calls.
|
|
23
|
+
|
|
24
|
+
I run a small WordPress agency and use this tool every day on client sites. If you're skeptical about agentic codegen for production infrastructure, the entire commit history is in the open — judge for yourself.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
12
28
|
## Why this exists
|
|
13
29
|
|
|
14
30
|
There are 25+ WordPress MCP servers on GitHub today. None targets the **agency multi-site workflow** with:
|
|
@@ -217,6 +233,16 @@ v1.0.0 was tested in real conditions against a live WordPress install with Eleme
|
|
|
217
233
|
|
|
218
234
|
---
|
|
219
235
|
|
|
236
|
+
## If this saved you time
|
|
237
|
+
|
|
238
|
+
The fastest way to support the project is a [⭐ star on GitHub](https://github.com/Mogacode-ma/elementor-mcp-agent) — it helps other agencies running Elementor sites find this and tells me what to keep building.
|
|
239
|
+
|
|
240
|
+
You can also:
|
|
241
|
+
|
|
242
|
+
- Open an [issue](https://github.com/Mogacode-ma/elementor-mcp-agent/issues) for bugs, edge cases, or missing tools
|
|
243
|
+
- Start a [discussion](https://github.com/Mogacode-ma/elementor-mcp-agent/discussions) for design or workflow questions
|
|
244
|
+
- Share what you built with it — I'd love to hear
|
|
245
|
+
|
|
220
246
|
## License
|
|
221
247
|
|
|
222
248
|
[MIT](./LICENSE) — © 2026 [MogaCode](https://mogacode.ma).
|
package/dist/server.js
CHANGED
|
@@ -3109,6 +3109,16 @@ ${msg}` }],
|
|
|
3109
3109
|
const transport = new StdioServerTransport();
|
|
3110
3110
|
await server.connect(transport);
|
|
3111
3111
|
logger.info({ tools: tools.length }, `${pkg.name} v${pkg.version} ready`);
|
|
3112
|
+
if (!process.env["SUPPRESS_BANNER"] && !process.env["CI"]) {
|
|
3113
|
+
process.stderr.write(
|
|
3114
|
+
`
|
|
3115
|
+
\u25B8 ${pkg.name} v${pkg.version} \u2014 ${tools.length} tools ready.
|
|
3116
|
+
if this helps you, a \u2B50 on github.com/Mogacode-ma/elementor-mcp-agent
|
|
3117
|
+
is the best thanks. (set SUPPRESS_BANNER=1 to silence this)
|
|
3118
|
+
|
|
3119
|
+
`
|
|
3120
|
+
);
|
|
3121
|
+
}
|
|
3112
3122
|
}
|
|
3113
3123
|
main().catch((e) => {
|
|
3114
3124
|
logger.error(e.message);
|