@wireweave/mcp-server 1.7.0 → 1.8.0-beta.0
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/dist/index.js +10 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -91,14 +91,13 @@ var tools = [
|
|
|
91
91
|
"type": "string",
|
|
92
92
|
"enum": [
|
|
93
93
|
"all",
|
|
94
|
+
"basic",
|
|
95
|
+
"layout",
|
|
96
|
+
"navigation",
|
|
94
97
|
"form",
|
|
95
|
-
"dashboard"
|
|
96
|
-
"mobile",
|
|
97
|
-
"social",
|
|
98
|
-
"commerce",
|
|
99
|
-
"media"
|
|
98
|
+
"dashboard"
|
|
100
99
|
],
|
|
101
|
-
"description": 'Filter examples by category. Use "all" to get all examples.',
|
|
100
|
+
"description": 'Filter examples by category. Use "all" to get all examples. Categories cover generic component compositions (basic, layout, navigation, form) and a domain-agnostic dashboard shell.',
|
|
102
101
|
"default": "all"
|
|
103
102
|
},
|
|
104
103
|
"limit": {
|
|
@@ -397,7 +396,7 @@ var tools = [
|
|
|
397
396
|
},
|
|
398
397
|
{
|
|
399
398
|
name: "wireweave_cloud_save_wireframe",
|
|
400
|
-
description: "Save a new wireframe to the cloud.
|
|
399
|
+
description: "Save a new wireframe to the cloud. Free (v2.0+).\n\nRECOMMENDED WORKFLOW:\n1. Call wireweave_cloud_list_projects to get available projects\n2. If projects exist: Ask user which project to save to\n3. If no projects: Ask user to (a) create a new project, or (b) save to default project\n4. Call this tool with the chosen projectId (or omit for default project)\n\nNote: If projectId is not provided, the wireframe will be saved to the user's default project.",
|
|
401
400
|
inputSchema: {
|
|
402
401
|
"type": "object",
|
|
403
402
|
"properties": {
|
|
@@ -438,7 +437,7 @@ var tools = [
|
|
|
438
437
|
},
|
|
439
438
|
{
|
|
440
439
|
name: "wireweave_cloud_update_wireframe",
|
|
441
|
-
description: "Update an existing wireframe. Creates a new version automatically.
|
|
440
|
+
description: "Update an existing wireframe. Creates a new version automatically. Free (v2.0+).",
|
|
442
441
|
inputSchema: {
|
|
443
442
|
"type": "object",
|
|
444
443
|
"properties": {
|
|
@@ -509,7 +508,7 @@ var tools = [
|
|
|
509
508
|
},
|
|
510
509
|
{
|
|
511
510
|
name: "wireweave_cloud_restore_version",
|
|
512
|
-
description: "Restore a wireframe to a previous version.
|
|
511
|
+
description: "Restore a wireframe to a previous version. Free (v2.0+).",
|
|
513
512
|
inputSchema: {
|
|
514
513
|
"type": "object",
|
|
515
514
|
"properties": {
|
|
@@ -530,7 +529,7 @@ var tools = [
|
|
|
530
529
|
},
|
|
531
530
|
{
|
|
532
531
|
name: "wireweave_cloud_create_share_link",
|
|
533
|
-
description: "Create a shareable link for a wireframe.
|
|
532
|
+
description: "Create a shareable link for a wireframe. Free (v2.0+).",
|
|
534
533
|
inputSchema: {
|
|
535
534
|
"type": "object",
|
|
536
535
|
"properties": {
|
|
@@ -720,7 +719,7 @@ var prompts = [
|
|
|
720
719
|
arguments: [
|
|
721
720
|
{
|
|
722
721
|
name: "description",
|
|
723
|
-
description: 'Description of the wireframe to create (e.g., "
|
|
722
|
+
description: 'Description of the wireframe to create (e.g., "dashboard with sidebar nav and a stats card row")',
|
|
724
723
|
required: true
|
|
725
724
|
}
|
|
726
725
|
]
|