@epilot/volt-ui-mcp 0.1.1 → 0.1.3

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 (4) hide show
  1. package/index.js +7 -3
  2. package/package.json +2 -2
  3. package/registry.json +4807 -1227
  4. package/README.md +0 -186
package/index.js CHANGED
@@ -18,7 +18,9 @@ const registry = loadRegistry(registryPath)
18
18
  const server = new Server(
19
19
  {
20
20
  name: "volt-ui-mcp",
21
- version: registry.schemaVersion ? `schema-${registry.schemaVersion}` : "0.1.0",
21
+ version: registry.schemaVersion
22
+ ? `schema-${registry.schemaVersion}`
23
+ : "0.1.0",
22
24
  },
23
25
  {
24
26
  capabilities: {
@@ -92,7 +94,8 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
92
94
  properties: {
93
95
  query: {
94
96
  type: "string",
95
- description: "Optional text filter for component name or description.",
97
+ description:
98
+ "Optional text filter for component name or description.",
96
99
  },
97
100
  },
98
101
  additionalProperties: false,
@@ -144,7 +147,8 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
144
147
  },
145
148
  group: {
146
149
  type: "string",
147
- description: "Optional group filter (palette, semantic, utility).",
150
+ description:
151
+ "Optional group filter (palette, semantic, utility).",
148
152
  },
149
153
  },
150
154
  additionalProperties: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/volt-ui-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "registry.json"
12
12
  ],
13
13
  "scripts": {
14
- "prepack": "bun ../../scripts/build-mcp-registry.ts"
14
+ "prepack": "bun ../volt-ui/scripts/build-mcp-registry.ts"
15
15
  },
16
16
  "dependencies": {
17
17
  "@modelcontextprotocol/sdk": "^1.0.0"