@respira/wordpress-mcp-server 8.0.6 → 8.1.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/CHANGELOG.md +1232 -0
- package/README.md +12 -3
- package/dist/__tests__/tools-list-protocol-smoke.test.js +21 -6
- package/dist/__tests__/tools-list-protocol-smoke.test.js.map +1 -1
- package/dist/acf-tools.d.ts +1 -1
- package/dist/acf-tools.d.ts.map +1 -1
- package/dist/bricks-tools.d.ts +1 -1
- package/dist/bricks-tools.d.ts.map +1 -1
- package/dist/elementor-tools.d.ts +1 -1
- package/dist/elementor-tools.d.ts.map +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +12 -7
- package/dist/server.js.map +1 -1
- package/dist/wordpress-client.js +1 -1
- package/dist/wordpress-client.js.map +1 -1
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@respira/wordpress-mcp-server",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"mcpName": "io.github.webmyc/respira-wordpress",
|
|
5
|
-
"description": "
|
|
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.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"wordpress-mcp-server": "./dist/index.js",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"certs/**/*",
|
|
16
16
|
"skills/**/*",
|
|
17
17
|
"README.md",
|
|
18
|
+
"CHANGELOG.md",
|
|
18
19
|
"TOOL_CATALOG.md",
|
|
19
20
|
"SOUL.md",
|
|
20
21
|
"tool-capabilities.json",
|
|
@@ -127,11 +128,12 @@
|
|
|
127
128
|
},
|
|
128
129
|
"dependencies": {
|
|
129
130
|
"@iarna/toml": "^2.2.5",
|
|
130
|
-
"@modelcontextprotocol/
|
|
131
|
-
"@
|
|
132
|
-
"
|
|
131
|
+
"@modelcontextprotocol/client": "^2.0.0",
|
|
132
|
+
"@modelcontextprotocol/server": "^2.0.0",
|
|
133
|
+
"@sentry/node": "^10.69.0",
|
|
134
|
+
"axios": "^1.19.0",
|
|
133
135
|
"dotenv": "^16.3.1",
|
|
134
|
-
"form-data": "^4.0.
|
|
136
|
+
"form-data": "^4.0.6"
|
|
135
137
|
},
|
|
136
138
|
"devDependencies": {
|
|
137
139
|
"@types/node": "^20.10.0",
|