@noleemits/vision-builder-control-mcp 4.5.5
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 +34 -0
- package/index.js +4361 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Vision Builder Control — MCP Server
|
|
2
|
+
|
|
3
|
+
**v4.2.2** | 63 tools for WordPress + Elementor management via Claude
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Auto-run via npx (recommended)
|
|
9
|
+
npx -y @noleemits/vision-builder-control-mcp
|
|
10
|
+
|
|
11
|
+
# Or run locally
|
|
12
|
+
node index.js
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Environment Variables
|
|
16
|
+
|
|
17
|
+
| Variable | Required | Description |
|
|
18
|
+
|----------|----------|-------------|
|
|
19
|
+
| `WP_URL` | Yes | WordPress site URL (e.g., `https://example.com`) |
|
|
20
|
+
| `WP_USER` | Yes | WordPress username |
|
|
21
|
+
| `WP_APP_PASSWORD` | Yes | WordPress application password |
|
|
22
|
+
|
|
23
|
+
## Transport Modes
|
|
24
|
+
|
|
25
|
+
**stdio (default)** — Used by Claude Desktop and Claude Code.
|
|
26
|
+
|
|
27
|
+
**HTTP/SSE** — Used by Claude.ai web connectors:
|
|
28
|
+
```bash
|
|
29
|
+
node index.js --http --port=3100
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Full Documentation
|
|
33
|
+
|
|
34
|
+
See [DOCUMENTATION.md](../DOCUMENTATION.md) for the complete tool reference, workflows, and troubleshooting guide.
|