@wireweave/mcp-server 1.1.3 → 1.2.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.
Files changed (2) hide show
  1. package/dist/index.js +27 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -570,6 +570,32 @@ var tools = [
570
570
  ]
571
571
  }
572
572
  },
573
+ {
574
+ name: "wireweave_cloud_diff_versions",
575
+ description: "Compare two versions of a wireframe and return the differences. Useful for reviewing changes without loading full code.",
576
+ inputSchema: {
577
+ "type": "object",
578
+ "properties": {
579
+ "wireframeId": {
580
+ "type": "string",
581
+ "description": "Wireframe ID"
582
+ },
583
+ "versionA": {
584
+ "type": "number",
585
+ "description": "First version number to compare"
586
+ },
587
+ "versionB": {
588
+ "type": "number",
589
+ "description": "Second version number to compare"
590
+ }
591
+ },
592
+ "required": [
593
+ "wireframeId",
594
+ "versionA",
595
+ "versionB"
596
+ ]
597
+ }
598
+ },
573
599
  {
574
600
  name: "wireweave_account_balance",
575
601
  description: "Check your current credit balance and subscription status",
@@ -672,6 +698,7 @@ var toolEndpoints = {
672
698
  wireweave_cloud_restore_version: { method: "POST", path: "/cloud/wireframes/:wireframeId/versions/:version/restore", pathParams: ["wireframeId", "version"] },
673
699
  wireweave_cloud_create_share_link: { method: "POST", path: "/cloud/wireframes/:wireframeId/shares", pathParams: ["wireframeId"] },
674
700
  wireweave_cloud_list_shares: { method: "GET", path: "/cloud/wireframes/:wireframeId/shares", pathParams: ["wireframeId"] },
701
+ wireweave_cloud_diff_versions: { method: "GET", path: "/cloud/wireframes/:wireframeId/diff", pathParams: ["wireframeId"] },
675
702
  wireweave_account_balance: { method: "GET", path: "/billing/balance" },
676
703
  wireweave_account_subscription: { method: "GET", path: "/billing/subscription" },
677
704
  wireweave_account_transactions: { method: "GET", path: "/billing/transactions" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wireweave/mcp-server",
3
- "version": "1.1.3",
3
+ "version": "1.2.0",
4
4
  "description": "MCP server for Wireweave DSL - Thin client for API Server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",