@respira/wordpress-mcp-server 8.1.1 → 8.1.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +13 -9
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to Respira WordPress MCP Server will be documented in this f
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [8.1.3] - 2026-07-30
9
+
10
+ ### Changed
11
+
12
+ - **The npm listing now states the real tool counts and shows the current key visual.** Three surfaces disagreed: the README said 169 core / 272 with WooCommerce, `package.json` said 197 / 302, and the canonical source (`respira-versions.json`) says 198 / 303. All now read from the canonical figures. The hero image is the one used on the MCP dashboard, served from `www` rather than the apex, which returns a 307 and forced the old link to be proxied. Nothing guards these strings today, which is how they drifted; the counts are worth re-checking against `respira-versions.json` at each release until something does.
13
+
14
+ ## [8.1.2] - 2026-07-30
15
+
16
+ ### Documentation
17
+
18
+ - Corrected the npm README heading from 12 to 16 supported page builders.
19
+ - Added Spectra, Kadence Blocks, GenerateBlocks, and SeedProd to the support table, and corrected the stale Site Editor “Next release” label.
20
+
8
21
  ## [8.1.1] - 2026-07-30
9
22
 
10
23
  ### Documentation
package/README.md CHANGED
@@ -1,20 +1,20 @@
1
1
  <p align="center">
2
2
  <a href="https://respira.press">
3
- <img src="https://respira.press/hero/respira-mcp-kv.jpg" alt="Respira for WordPress, the AI infrastructure layer for WordPress" width="100%">
3
+ <img src="https://www.respira.press/images/mcp-hero.png" alt="Respira for WordPress, the AI infrastructure layer for WordPress" width="100%">
4
4
  </a>
5
5
  </p>
6
6
 
7
7
  <h1 align="center">Respira WordPress MCP Server</h1>
8
8
 
9
9
  <p align="center">
10
- <strong>197 MCP tools, 302 with the WooCommerce add-on. 16 page builders and the native Site Editor. MCP 2026-07-28 with legacy-client support.</strong><br>
10
+ <strong>198 MCP tools, 303 with the WooCommerce add-on. 16 page builders and the native Site Editor. MCP 2026-07-28 with legacy-client support.</strong><br>
11
11
  Element-level editing, full page creation, HTML-to-builder conversion with rendering fidelity validation, per-site tool governance, storefront design intelligence, stock images, bulk operations — all through one MCP server.
12
12
  </p>
13
13
 
14
14
  <p align="center">
15
15
  <a href="https://www.npmjs.com/package/@respira/wordpress-mcp-server"><img src="https://img.shields.io/npm/v/@respira/wordpress-mcp-server.svg?style=flat-square&color=10b981" alt="npm version"></a>
16
16
  <a href="https://www.npmjs.com/package/@respira/wordpress-mcp-server"><img src="https://img.shields.io/npm/dm/@respira/wordpress-mcp-server.svg?style=flat-square" alt="npm downloads"></a>
17
- <img src="https://img.shields.io/badge/tools-302-10b981?style=flat-square" alt="302 Tools with WooCommerce">
17
+ <img src="https://img.shields.io/badge/tools-303-10b981?style=flat-square" alt="303 Tools with WooCommerce">
18
18
  <img src="https://img.shields.io/badge/builders-16-10b981?style=flat-square" alt="16 Page Builders">
19
19
  <img src="https://img.shields.io/badge/TypeScript-100%25-blue?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript">
20
20
  </p>
@@ -125,7 +125,7 @@ Every successful tool response includes `structuredContent`, the raw JSON object
125
125
 
126
126
  ### v6.0 "Storefront" — Context-Aware Tool Filtering
127
127
 
128
- The MCP server exposes 169 core tools and 103 WooCommerce add-on tools. It automatically filters the list based on the site's detected builder and active plugins, so clients receive only the useful subset. Fail-open: if detection fails, the full list is returned.
128
+ The MCP server exposes 198 core tools and 103 WooCommerce add-on tools. It automatically filters the list based on the site's detected builder and active plugins, so clients receive only the useful subset. Fail-open: if detection fails, the full list is returned.
129
129
 
130
130
  | Capability | Respira | Typical WordPress MCP servers |
131
131
  |---|---|---|
@@ -233,7 +233,7 @@ Or run the interactive setup wizard: `npx @respira/wordpress-mcp-server --setup`
233
233
 
234
234
  ### Tool Limit? Use `enabledTools`
235
235
 
236
- Some MCP clients (Antigravity, etc.) have a hard limit on active tools (often 100). Respira can expose up to 272 tools when the WooCommerce add-on is active. To stay under the limit, add `enabledTools` to your config — only those tools will appear in the listing:
236
+ Some MCP clients (Antigravity, etc.) have a hard limit on active tools (often 100). Respira can expose up to 303 tools when the WooCommerce add-on is active. To stay under the limit, add `enabledTools` to your config — only those tools will appear in the listing:
237
237
 
238
238
  ```json
239
239
  {
@@ -272,7 +272,7 @@ Unknown tool names now return a proper `CallToolResult` with `isError: true` and
272
272
  ## v6.0 "Storefront" — What's New
273
273
 
274
274
  ### Context-Aware Tool Filtering
275
- The MCP server automatically filters its 169 core and 103 WooCommerce tools based on the site's detected builder and active plugins. Less noise, faster AI responses, lower token usage. Fail-open: if detection fails, the full list is returned.
275
+ The MCP server automatically filters its 198 core and 103 WooCommerce tools based on the site's detected builder and active plugins. Less noise, faster AI responses, lower token usage. Fail-open: if detection fails, the full list is returned.
276
276
 
277
277
  ### Flatsome UX Builder (Builder #12)
278
278
  Full round-trip shortcode editing, element-level precision, declarative page creation, and 55-element intelligence. Detected by active theme — mixed-builder sites handled per-page.
@@ -333,7 +333,7 @@ respira_add_image({ post_id: 42, image_url: "https://..." })
333
333
 
334
334
  ---
335
335
 
336
- ## 12 Supported Page Builders
336
+ ## 16 Supported Page Builders
337
337
 
338
338
  <p align="center">
339
339
  <img src="https://img.shields.io/badge/Elementor-Full_Intelligence-92003B?style=for-the-badge" alt="Elementor">
@@ -354,6 +354,10 @@ respira_add_image({ post_id: 42, image_url: "https://..." })
354
354
  | **Oxygen** | Smart Defaults | Tree utility | Yes | Static schemas |
355
355
  | **WPBakery** | Smart Defaults | Tree utility | Yes | Static schemas |
356
356
  | **Breakdance** | Smart Defaults | Tree utility | Yes | Static schemas |
357
+ | **Spectra** | Full Support | Native blocks | Yes | Block registry |
358
+ | **Kadence Blocks** | Full Support | Native blocks | Yes | Block registry |
359
+ | **GenerateBlocks** | Full Support | Native blocks | Yes | Block registry |
360
+ | **SeedProd** | Read + Audit | Inspection | No | Static schemas |
357
361
  | **Brizy** | Basic | Tree utility | Best-effort | — |
358
362
  | **Thrive Architect** | Basic | Tree utility | Best-effort | — |
359
363
  | **Visual Composer** | Basic | Tree utility | Best-effort | — |
@@ -362,7 +366,7 @@ respira_add_image({ post_id: 42, image_url: "https://..." })
362
366
 
363
367
  ## All Tools
364
368
 
365
- ### Native Site Editor structures (10 tools) — Next release
369
+ ### Native Site Editor structures (10 tools) — Shipped in v8.0
366
370
 
367
371
  These are Respira-native WordPress operations, not a copied generic tool catalog. User-owned structures use the same approval, revision, snapshot, no-op detection, read-back, and render-verification contract as template editing. Theme and plugin patterns are inspectable but remain owned by their source.
368
372
 
@@ -813,6 +817,6 @@ MIT © [Respira](https://respira.press)
813
817
  ---
814
818
 
815
819
  <p align="center">
816
- <strong>169 core tools, 272 with WooCommerce. 16 builders. The AI infrastructure layer for WordPress.</strong><br>
820
+ <strong>198 core tools, 303 with WooCommerce. 16 builders. The AI infrastructure layer for WordPress.</strong><br>
817
821
  <a href="https://respira.press">respira.press</a>
818
822
  </p>
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@respira/wordpress-mcp-server",
3
- "version": "8.1.1",
3
+ "version": "8.1.3",
4
4
  "mcpName": "io.github.webmyc/respira-wordpress",
5
- "description": "WordPress MCP server with MCP 2026-07-28 and legacy-client support. 197 tools, 302 with WooCommerce, across 16 page builders and the Site Editor.",
5
+ "description": "WordPress MCP server with MCP 2026-07-28 and legacy-client support. 198 tools, 303 with WooCommerce, across 16 page builders and the Site Editor.",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
8
  "wordpress-mcp-server": "./dist/index.js",