mcp-wordpress 2.11.0 → 2.11.1
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 +9 -8
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -10,26 +10,27 @@ Manage WordPress sites with natural language through AI tools like Claude Deskto
|
|
|
10
10
|
[Quick Start](#-quick-start) • [Why This MCP Server?](#-why-this-mcp-server)
|
|
11
11
|
[Installation Options](#-installation-options) • [Documentation](#-documentation) • [Examples](#-examples)
|
|
12
12
|
|
|
13
|
-
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/main-ci.yml)
|
|
14
14
|
[](https://github.com/docdyhr/mcp-wordpress/stargazers)
|
|
15
15
|
[](https://www.npmjs.com/package/mcp-wordpress)
|
|
16
16
|
[](https://www.npmjs.com/package/mcp-wordpress)
|
|
17
17
|
[](https://www.npmjs.com/package/mcp-wordpress)
|
|
18
18
|
[](https://hub.docker.com/r/docdyhr/mcp-wordpress)
|
|
19
|
-
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/main-ci.yml)
|
|
20
|
+
[](https://codecov.io/gh/docdyhr/mcp-wordpress)
|
|
21
|
+
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/main-ci.yml)
|
|
22
|
+
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/main-ci.yml)
|
|
23
23
|
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/mcp-evaluations.yml)
|
|
24
24
|
|
|
25
25
|
[](https://github.com/docdyhr/mcp-wordpress)
|
|
26
|
-
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/main-ci.yml)
|
|
27
|
+
[](https://snyk.io/test/npm/mcp-wordpress)
|
|
28
|
+
[](https://github.com/docdyhr/mcp-wordpress/actions/workflows/codeql-analysis.yml)
|
|
29
29
|
[](https://hub.docker.com/r/docdyhr/mcp-wordpress)
|
|
30
30
|
[](https://github.com/docdyhr/mcp-wordpress/blob/main/LICENSE)
|
|
31
31
|
[](https://smithery.ai/server/@docdyhr/mcp-wordpress)
|
|
32
32
|
|
|
33
|
+
<!-- Badges updated: 2025-10-20T12:21:16.087Z -->
|
|
33
34
|
### 🎉 **NEW:** v2.7.0 - Composition Architecture & Complete SEO Toolkit!
|
|
34
35
|
|
|
35
36
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-wordpress",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.1",
|
|
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",
|
|
@@ -82,21 +82,22 @@
|
|
|
82
82
|
"test": "npm run test:batch",
|
|
83
83
|
"test:auth": "node scripts/test-auth.js",
|
|
84
84
|
"test:batch": "npm run test:batch:1 && npm run test:batch:2 && npm run test:batch:3 && npm run test:batch:4",
|
|
85
|
-
"test:batch:1": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/security/ tests/cache/ tests/server/ --no-coverage --reporter=
|
|
86
|
-
"test:batch:2": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/client/ tests/config/ tests/utils/ --no-coverage --reporter=
|
|
87
|
-
"test:batch:3": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/tools/ tests/performance/ --no-coverage --reporter=
|
|
88
|
-
"test:batch:4": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/*.test.js tests/docs/ --no-coverage --reporter=
|
|
85
|
+
"test:batch:1": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/security/ tests/cache/ tests/server/ --no-coverage --reporter=default",
|
|
86
|
+
"test:batch:2": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/client/ tests/config/ tests/utils/ --no-coverage --reporter=default",
|
|
87
|
+
"test:batch:3": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/tools/ tests/performance/ --no-coverage --reporter=default",
|
|
88
|
+
"test:batch:4": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run tests/*.test.js tests/docs/ --no-coverage --reporter=default",
|
|
89
89
|
"test:cache": "npm run build && vitest run tests/cache/",
|
|
90
|
-
"test:ci": "npm run build && CI=true NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --reporter=
|
|
90
|
+
"test:ci": "npm run build && CI=true NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --reporter=default",
|
|
91
91
|
"test:ci:safe": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx vitest run --config vitest.ci.config.ts",
|
|
92
92
|
"test:compatibility": "npm run build && vitest run tests/compatibility/ || echo 'No compatibility tests found'",
|
|
93
93
|
"test:config": "npm run build && vitest run tests/config/",
|
|
94
94
|
"test:coverage": "npm run build && NODE_OPTIONS=\"--max-old-space-size=8192\" vitest run --coverage",
|
|
95
95
|
"test:coverage:report": "npm run test:coverage && node scripts/coverage-guardrail.js",
|
|
96
96
|
"test:memory-config": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144\" vitest run --config vitest.memory-safe.config.ts",
|
|
97
|
-
"test:memory-safe": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144 --max-semi-space-size=256\" vitest run --no-coverage --reporter=
|
|
97
|
+
"test:memory-safe": "npm run build && NODE_OPTIONS=\"--max-old-space-size=6144 --max-semi-space-size=256\" vitest run --no-coverage --reporter=default",
|
|
98
98
|
"test:performance": "npm run build && vitest run tests/performance/",
|
|
99
99
|
"test:pre-push": "bash scripts/test-pre-push.sh",
|
|
100
|
+
"test:production-security": "npm audit --omit=dev",
|
|
100
101
|
"test:performance:ci": "npm run build && mkdir -p tests/results && NODE_OPTIONS=\"--max-old-space-size=4096\" vitest run tests/performance/ --reporter=json --outputFile=tests/results/performance-results.json",
|
|
101
102
|
"test:safe": "node scripts/run-tests-safe.cjs",
|
|
102
103
|
"test:security": "npm run build && vitest run tests/security/",
|
|
@@ -136,8 +137,8 @@
|
|
|
136
137
|
},
|
|
137
138
|
"devDependencies": {
|
|
138
139
|
"@eslint/js": "^9.34.0",
|
|
139
|
-
"@pact-foundation/pact": "^
|
|
140
|
-
"@pact-foundation/pact-node": "^10.
|
|
140
|
+
"@pact-foundation/pact": "^16.0.1",
|
|
141
|
+
"@pact-foundation/pact-node": "^10.11.4",
|
|
141
142
|
"@semantic-release/changelog": "^6.0.3",
|
|
142
143
|
"@semantic-release/git": "^10.0.1",
|
|
143
144
|
"@types/node": "^24.3.0",
|