@respira/wordpress-mcp-server 8.1.4 → 8.1.6
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/CHANGELOG.md +16 -0
- package/README.md +5 -5
- package/dist/__tests__/oq-put-fallback-403.test.d.ts +2 -0
- package/dist/__tests__/oq-put-fallback-403.test.d.ts.map +1 -0
- package/dist/__tests__/oq-put-fallback-403.test.js +59 -0
- package/dist/__tests__/oq-put-fallback-403.test.js.map +1 -0
- package/dist/__tests__/v2-negotiation-failure.test.d.ts +2 -0
- package/dist/__tests__/v2-negotiation-failure.test.d.ts.map +1 -0
- package/dist/__tests__/v2-negotiation-failure.test.js +104 -0
- package/dist/__tests__/v2-negotiation-failure.test.js.map +1 -0
- package/dist/__tests__/v2-negotiation-through-real-client.test.d.ts +2 -0
- package/dist/__tests__/v2-negotiation-through-real-client.test.d.ts.map +1 -0
- package/dist/__tests__/v2-negotiation-through-real-client.test.js +104 -0
- package/dist/__tests__/v2-negotiation-through-real-client.test.js.map +1 -0
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +20 -8
- package/dist/server.js.map +1 -1
- package/dist/wordpress-client.d.ts +63 -0
- package/dist/wordpress-client.d.ts.map +1 -1
- package/dist/wordpress-client.js +121 -15
- package/dist/wordpress-client.js.map +1 -1
- package/package.json +2 -2
- package/skills/migrate-elementor-to-breakdance/SKILL.md +1 -1
- package/skills/migrate-elementor-to-bricks/SKILL.md +1 -1
- package/skills/migrate-elementor-to-gutenberg/SKILL.md +1 -1
- package/skills/migrate-elementor-to-oxygen/SKILL.md +1 -1
|
@@ -8,7 +8,7 @@ Converts Elementor-built WordPress pages to Breakdance Builder. Reads Elementor'
|
|
|
8
8
|
|
|
9
9
|
## What This Skill Does
|
|
10
10
|
|
|
11
|
-
Breakdance is a newer builder created by the Oxygen team with a focus on clean output and familiar visual editing. Both Elementor and Breakdance are widget/element-based builders, making this a relatively smooth migration path. The main challenge is mapping Elementor's JSON widget tree (`_elementor_data`) to Breakdance's post meta format, translating settings names, and handling the structural differences in how each builder handles sections, columns, and responsive design. Both sit among the
|
|
11
|
+
Breakdance is a newer builder created by the Oxygen team with a focus on clean output and familiar visual editing. Both Elementor and Breakdance are widget/element-based builders, making this a relatively smooth migration path. The main challenge is mapping Elementor's JSON widget tree (`_elementor_data`) to Breakdance's post meta format, translating settings names, and handling the structural differences in how each builder handles sections, columns, and responsive design. Both sit among the 17 page builders Respira reads and writes natively, so extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
|
|
12
12
|
|
|
13
13
|
**Handles:**
|
|
14
14
|
- Section/Column layouts → Breakdance Section/Div elements
|
|
@@ -8,7 +8,7 @@ Converts Elementor-built WordPress pages to Bricks Builder. Reads Elementor's JS
|
|
|
8
8
|
|
|
9
9
|
## What This Skill Does
|
|
10
10
|
|
|
11
|
-
Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in `_elementor_data`, while Bricks uses a flat-ish JSON array in `_bricks_page_content_2`. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the
|
|
11
|
+
Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in `_elementor_data`, while Bricks uses a flat-ish JSON array in `_bricks_page_content_2`. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the 17 page builders Respira reads and writes natively, so the extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
|
|
12
12
|
|
|
13
13
|
**Handles:**
|
|
14
14
|
- Section/Column layouts → Bricks Section/Container elements
|
|
@@ -10,7 +10,7 @@ Converts Elementor-built WordPress pages to native Gutenberg blocks. Reads Eleme
|
|
|
10
10
|
|
|
11
11
|
Moving from Elementor to Gutenberg is one of the most common — and most complex — builder migrations. Elementor stores content as a deeply nested JSON tree in `_elementor_data`, while Gutenberg uses HTML comments (`<!-- wp:block -->`) inline with content in `post_content`. Every layout decision Elementor makes with JSON settings must be translated into block attributes, CSS classes, or Group/Columns block structures.
|
|
12
12
|
|
|
13
|
-
This skill handles that translation systematically: it reads every Elementor widget, finds the right Gutenberg block, maps settings as closely as possible, and flags anything that needs manual attention. The result is clean, dependency-free WordPress content. Elementor and Gutenberg are both among the
|
|
13
|
+
This skill handles that translation systematically: it reads every Elementor widget, finds the right Gutenberg block, maps settings as closely as possible, and flags anything that needs manual attention. The result is clean, dependency-free WordPress content. Elementor and Gutenberg are both among the 17 page builders Respira reads and writes natively, so extraction and the block write run through the same builder-aware tooling Respira uses everywhere else.
|
|
14
14
|
|
|
15
15
|
**Handles:**
|
|
16
16
|
- Section/Column layouts → Group and Columns blocks with appropriate width settings
|
|
@@ -8,7 +8,7 @@ Converts Elementor-built WordPress pages to Oxygen Builder. Reads Elementor's JS
|
|
|
8
8
|
|
|
9
9
|
## What This Skill Does
|
|
10
10
|
|
|
11
|
-
Oxygen is a fundamentally different kind of builder than Elementor — it outputs clean HTML/CSS without wrapper divs, gives direct access to CSS properties, and thinks in terms of components rather than widgets. This migration requires not just content transfer but a philosophical shift: Elementor's widget-based approach maps to Oxygen's component-based architecture where you have more control but less hand-holding. Both Elementor and Oxygen are among the
|
|
11
|
+
Oxygen is a fundamentally different kind of builder than Elementor — it outputs clean HTML/CSS without wrapper divs, gives direct access to CSS properties, and thinks in terms of components rather than widgets. This migration requires not just content transfer but a philosophical shift: Elementor's widget-based approach maps to Oxygen's component-based architecture where you have more control but less hand-holding. Both Elementor and Oxygen are among the 17 page builders Respira reads and writes natively, so extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
|
|
12
12
|
|
|
13
13
|
**Handles:**
|
|
14
14
|
- Section/Column layouts → Oxygen Section/Columns/Div components
|