verso-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.
- package/index.js +14 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -456,6 +456,20 @@ If targetNodeId is provided, writes into that specific node instead of replacing
|
|
|
456
456
|
description: 'Returns the current design system state (theme, accentColor, iconLibrary, fontFamily, device, viewport).',
|
|
457
457
|
inputSchema: { type: 'object', properties: {} },
|
|
458
458
|
},
|
|
459
|
+
{
|
|
460
|
+
name: 'set_design_settings',
|
|
461
|
+
description: 'Update the project design system settings. Only provide the fields you want to change.',
|
|
462
|
+
inputSchema: {
|
|
463
|
+
type: 'object',
|
|
464
|
+
properties: {
|
|
465
|
+
device: { type: 'string', enum: ['iPhone 16', 'Web'], description: 'Target device.' },
|
|
466
|
+
theme: { type: 'string', enum: ['Light', 'Dark'], description: 'Color theme.' },
|
|
467
|
+
accentColor: { type: 'string', description: "Primary accent color as hex (e.g. '#FF6B35')." },
|
|
468
|
+
fontFamily: { type: 'string', description: "Primary font family (e.g. 'Inter', 'DM Sans')." },
|
|
469
|
+
iconLibrary: { type: 'string', description: "Icon set (e.g. 'Solar', 'Lucide', 'Phosphor')." },
|
|
470
|
+
},
|
|
471
|
+
},
|
|
472
|
+
},
|
|
459
473
|
{
|
|
460
474
|
name: 'list_projects',
|
|
461
475
|
description: 'List all your Verso projects. Returns project id, name, screen count, and last updated time.',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verso-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "MCP server for Verso — AI-powered mobile app design tool",
|
|
5
5
|
"bin": {
|
|
6
6
|
"verso-mcp": "./index.js"
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/
|
|
15
|
+
"url": "https://github.com/devsemih/verso-mcp"
|
|
16
16
|
}
|
|
17
17
|
}
|