elementor-mcp-agent 1.0.0 → 1.1.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 +20 -5
- package/dist/server.js +711 -2
- package/dist/server.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ The `ssh` block is **optional** but unlocks **8 additional tools** (WP-CLI escap
|
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|
|
74
|
-
## Tools (
|
|
74
|
+
## Tools (34)
|
|
75
75
|
|
|
76
76
|
### Sites & health
|
|
77
77
|
- `list_sites` — enumerate the pool
|
|
@@ -104,6 +104,20 @@ The `ssh` block is **optional** but unlocks **8 additional tools** (WP-CLI escap
|
|
|
104
104
|
- `screenshot_page` — headless Chrome PNG of any URL
|
|
105
105
|
- `compare_screenshots` — SHA-256 + byte-delta
|
|
106
106
|
|
|
107
|
+
### Widgets (v1.1 — widget-level CRUD)
|
|
108
|
+
- `read_widget` — fetch one widget by id (read-only)
|
|
109
|
+
- `update_widget_settings` — shallow-merge settings, with backup + validate + flush
|
|
110
|
+
- `delete_widget` — remove a widget from its parent container
|
|
111
|
+
- `duplicate_widget` — clone as sibling with fresh id
|
|
112
|
+
- `swap_widget_type` — replace widgetType + settings, preserve id + position
|
|
113
|
+
- `add_widget` — append a widget into a parent container
|
|
114
|
+
- `move_widget` — move a widget between containers (with position)
|
|
115
|
+
|
|
116
|
+
### Bulk & fleet (v1.1)
|
|
117
|
+
- `bulk_find_replace_site` — find/replace across every Elementor page of one site, per-page backup + validate + flush
|
|
118
|
+
- `fleet_find_replace` — same across **every site in the pool** (sequential, dry-run mandatory)
|
|
119
|
+
- `restore_from_file` — restore `_elementor_data` from a JSON file backup, with pre-restore safety backup
|
|
120
|
+
|
|
107
121
|
### Fleet
|
|
108
122
|
- `check_elementor_versions` — flag outdated installs against wordpress.org latest
|
|
109
123
|
|
|
@@ -156,15 +170,16 @@ v1.0.0 was tested in real conditions against a live WordPress install with Eleme
|
|
|
156
170
|
|
|
157
171
|
## Roadmap
|
|
158
172
|
|
|
159
|
-
**v1.1**
|
|
160
|
-
- Widget-level CRUD: `read_widget`, `update_widget_settings`, `
|
|
173
|
+
**v1.1** ✅ shipped
|
|
174
|
+
- Widget-level CRUD: `read_widget`, `update_widget_settings`, `delete_widget`, `duplicate_widget`, `swap_widget_type`, `add_widget`, `move_widget`
|
|
161
175
|
- `bulk_find_replace_site` (across all Elementor pages of one site)
|
|
162
|
-
- `
|
|
176
|
+
- `fleet_find_replace` (across all sites in pool)
|
|
177
|
+
- `restore_from_file`
|
|
163
178
|
|
|
164
179
|
**v1.2**
|
|
165
|
-
- `fleet_find_replace` (across all sites in pool)
|
|
166
180
|
- Global styles read/write
|
|
167
181
|
- Theme Builder template push across sites
|
|
182
|
+
- Section/column-level operations
|
|
168
183
|
|
|
169
184
|
**v2.0**
|
|
170
185
|
- WooCommerce-aware tools
|