@respira/wordpress-mcp-server 8.2.8 → 8.2.9

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 CHANGED
@@ -5,6 +5,12 @@ 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.2.9] - 2026-08-12
9
+
10
+ ### Fixed
11
+
12
+ - **The security tool descriptions named an advisory that had moved on.** `wordpress_update_core_security` described its `advisory_id` as "currently wordpress-wp2shell-2026" and listed 6.8.6 / 6.9.5 / 7.0.2 as the targets. The plugin catalog has carried the August 2026 core security release and its backports down to 4.7.34 since 8.6.9, and neither field was ever an enum, so nothing was blocked. Only the description was out of date, and that was enough: an agent read it, concluded the tool could not handle the August advisory, and stopped before trying. Both fields now point at `wordpress_run_security_audit` and the catalog rather than naming an advisory, so a future security release cannot make them wrong again. `advisory_ids` on the audit also now says what it actually does, which is get recorded on the receipt without changing which indicators the audit looks for.
13
+
8
14
  ## [8.2.8] - 2026-08-11
9
15
 
10
16
  ### Fixed
package/dist/server.js CHANGED
@@ -3580,7 +3580,7 @@ Allowlist: css, scss, less, json. PHP / JS theme writes are intentionally out of
3580
3580
  advisory_ids: {
3581
3581
  type: 'array',
3582
3582
  items: { type: 'string' },
3583
- description: 'Optional reviewed advisory IDs to record as the audit scope, for example wordpress-wp2shell-2026.',
3583
+ description: 'Optional reviewed advisory IDs, recorded on the receipt as the scope you audited. Recorded only: this does not currently change which indicators the audit looks for.',
3584
3584
  },
3585
3585
  deep_scan: {
3586
3586
  type: 'boolean',
@@ -3599,11 +3599,11 @@ Allowlist: css, scss, less, json. PHP / JS theme writes are intentionally out of
3599
3599
  properties: {
3600
3600
  advisory_id: {
3601
3601
  type: 'string',
3602
- description: 'Reviewed security advisory ID, currently wordpress-wp2shell-2026.',
3602
+ description: 'Reviewed security advisory ID. Do not guess it: run respira_run_security_audit first and use the advisory it reports. The approved list lives in the plugin catalog and grows with each WordPress security release, so any advisory named here would go stale.',
3603
3603
  },
3604
3604
  target_version: {
3605
3605
  type: 'string',
3606
- description: 'Exact approved patch version on the current branch: 6.8.6, 6.9.5 or 7.0.2 for wp2shell.',
3606
+ description: 'Exact approved patch version for that advisory on this site\'s own release branch, as reported by respira_run_security_audit. The plugin rejects anything outside its catalog, and it will not move a site across branches.',
3607
3607
  },
3608
3608
  backup_confirmed: {
3609
3609
  type: 'boolean',