@respira/wordpress-mcp-server 5.2.3 → 5.2.4
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 +24 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -139,6 +139,30 @@ Create `~/.respira/config.json`:
|
|
|
139
139
|
|
|
140
140
|
Or run the interactive setup wizard: `npx @respira/wordpress-mcp-server --setup`
|
|
141
141
|
|
|
142
|
+
### Tool Limit? Use `enabledTools`
|
|
143
|
+
|
|
144
|
+
Some MCP clients (Antigravity, etc.) have a hard limit on active tools (often 100). Respira exposes 147 tools by default. To stay under the limit, add `enabledTools` to your config — only those tools will appear in the listing:
|
|
145
|
+
|
|
146
|
+
```json
|
|
147
|
+
{
|
|
148
|
+
"sites": [{ "..." : "..." }],
|
|
149
|
+
"preferences": {
|
|
150
|
+
"enabledTools": [
|
|
151
|
+
"respira_read_page",
|
|
152
|
+
"respira_update_page",
|
|
153
|
+
"respira_list_pages",
|
|
154
|
+
"respira_find_element",
|
|
155
|
+
"respira_update_element",
|
|
156
|
+
"respira_build_page",
|
|
157
|
+
"respira_get_site_context",
|
|
158
|
+
"respira_get_builder_info"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Site management tools (`respira_list_sites`, `respira_switch_site`, `respira_get_active_site`) are always included. Unlisted tools still work if called — the filter only controls what's advertised to the client.
|
|
165
|
+
|
|
142
166
|
**Done.** Restart your AI tool and start editing.
|
|
143
167
|
|
|
144
168
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@respira/wordpress-mcp-server",
|
|
3
|
-
"version": "5.2.
|
|
4
|
-
"description": "147 respira_* MCP tools for WordPress. Element-level editing, full page creation, HTML-to-builder conversion, stock images, bulk operations, 27 widget shortcuts. Native support for 11 page builders. wordpress_* aliases still accepted but no longer listed — removed in v6.0.",
|
|
3
|
+
"version": "5.2.4",
|
|
4
|
+
"description": "147 respira_* MCP tools for WordPress. Element-level editing, full page creation, HTML-to-builder conversion, stock images, bulk operations, 27 widget shortcuts. Native support for 11 page builders. enabledTools config for clients with tool limits (Antigravity, etc). wordpress_* aliases still accepted but no longer listed — removed in v6.0.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"wordpress-mcp-server": "./dist/index.js",
|