mcp-wordpress 2.10.5 → 2.10.7

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 (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-wordpress",
3
- "version": "2.10.5",
3
+ "version": "2.10.7",
4
4
  "description": "Comprehensive Model Context Protocol server for WordPress management with composition-based architecture, 59 tools, SEO toolkit, performance monitoring, intelligent caching, and production-ready authentication",
5
5
  "keywords": [
6
6
  "mcp",
@@ -50,6 +50,7 @@
50
50
  "docs:serve": "npm run docs:generate && node scripts/serve-docs.js",
51
51
  "docs:validate": "npm run docs:generate && node scripts/validate-docs.js",
52
52
  "docs:watch": "npm run docs:generate && echo 'Watching for changes...' && npm run docs:serve",
53
+ "doctor:vscode": "npm run test:vscode && echo '\n🩺 VS Code health check complete'",
53
54
  "dxt:clean": "rm -rf dxt-build mcp-wordpress.dxt minimal-dxt-build mcp-wordpress-minimal.dxt mcp-wordpress-official.dxt",
54
55
  "dxt:package": "npm run dxt:clean && npm run dxt:build",
55
56
  "dxt:package:official": "npm run build && node scripts/build-dxt-clean.cjs",
@@ -73,6 +74,7 @@
73
74
  "security:full": "npm run security:scan && npm run security:review && npm run security:monitor && npm run test:security",
74
75
  "security:scan": "npm run build && node scripts/security-demo.js || npm audit --audit-level=low",
75
76
  "setup": "node bin/setup.js",
77
+ "setup:vscode": "code --install-extension bradlc.vscode-tailwindcss && code --install-extension continue.continue && code --install-extension ms-python.python && code --install-extension ms-vscode.hexeditor",
76
78
  "start": "npm run build && node dist/index.js",
77
79
  "status": "node bin/status.js",
78
80
  "test": "npm run test:batch",
@@ -82,6 +84,7 @@
82
84
  "test:batch:2": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/client/ tests/config/ tests/utils/ --no-coverage --reporter=basic",
83
85
  "test:batch:3": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/tools/ tests/performance/ --no-coverage --reporter=basic",
84
86
  "test:batch:4": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/*.test.js tests/docs/ --no-coverage --reporter=basic",
87
+ "test:cache": "npm run build && vitest run tests/cache/",
85
88
  "test:ci": "npm run build && CI=true NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --reporter=basic",
86
89
  "test:ci:safe": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx vitest run --config vitest.ci.config.ts",
87
90
  "test:compatibility": "npm run build && vitest run tests/compatibility/ || echo 'No compatibility tests found'",
@@ -101,8 +104,6 @@
101
104
  "test:vscode": "npm run build && node dist/scripts/test-vscode-setup.js",
102
105
  "test:watch": "vitest",
103
106
  "typecheck": "tsc --noEmit",
104
- "setup:vscode": "code --install-extension bradlc.vscode-tailwindcss && code --install-extension continue.continue && code --install-extension ms-python.python && code --install-extension ms-vscode.hexeditor",
105
- "doctor:vscode": "npm run test:vscode && echo '\n🩺 VS Code health check complete'",
106
107
  "verify-claude": "node scripts/verify-claude-integration.js"
107
108
  },
108
109
  "lint-staged": {