@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.
Files changed (3) hide show
  1. package/README.md +34 -0
  2. package/index.js +4361 -0
  3. package/package.json +45 -0
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@noleemits/vision-builder-control-mcp",
3
+ "version": "4.5.5",
4
+ "description": "Vision Builder Control MCP server - design token-driven page builder tools for WordPress/Elementor websites",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "bin": {
8
+ "vision-builder-control-mcp": "./index.js"
9
+ },
10
+ "files": [
11
+ "index.js",
12
+ "README.md"
13
+ ],
14
+ "scripts": {
15
+ "start": "node index.js"
16
+ },
17
+ "keywords": [
18
+ "mcp",
19
+ "claude",
20
+ "wordpress",
21
+ "elementor",
22
+ "design-tokens",
23
+ "page-builder",
24
+ "design-system"
25
+ ],
26
+ "author": "Noleemits",
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/noleemits/vision-builder-control-mcp.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/noleemits/vision-builder-control-mcp/issues"
34
+ },
35
+ "homepage": "https://github.com/noleemits/vision-builder-control-mcp#readme",
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "^1.27.1"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ }
45
+ }