@wireweave/mcp-server 1.3.0-beta.0 → 1.3.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/README.md +11 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  ## Overview
15
15
 
16
- This MCP server enables AI assistants like Claude to generate wireframes using the Wireweave DSL. It provides **32 tools** for parsing, rendering, validating, and managing wireframes.
16
+ This MCP server enables AI assistants like Claude to generate wireframes using the Wireweave DSL. It provides **30 tools** for parsing, rendering, validating, and managing wireframes.
17
17
 
18
18
  ## Prerequisites
19
19
 
@@ -58,9 +58,9 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
58
58
  | `WIREWEAVE_API_KEY` | Yes | Your API key from Dashboard |
59
59
  | `WIREWEAVE_API_URL` | No | API server URL (default: https://api.wireweave.org) |
60
60
 
61
- ## Available Tools (32)
61
+ ## Available Tools (30)
62
62
 
63
- ### Core Tools (14)
63
+ ### Core Tools (11)
64
64
 
65
65
  | Tool | Description |
66
66
  |------|-------------|
@@ -71,15 +71,12 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
71
71
  | `wireweave_patterns` | Get common layout patterns |
72
72
  | `wireweave_examples` | Get code examples by category |
73
73
  | `wireweave_render_html` | Render DSL to HTML and CSS |
74
- | `wireweave_render_svg` | Render DSL to SVG format |
75
74
  | `wireweave_validate_ux` | Validate UX best practices |
76
75
  | `wireweave_ux_rules` | Get UX rule categories |
77
76
  | `wireweave_diff` | Compare two wireframe sources |
78
- | `wireweave_export_json` | Export to JSON format |
79
- | `wireweave_export_figma` | Export to Figma format |
80
77
  | `wireweave_analyze` | Analyze wireframe statistics |
81
78
 
82
- ### Cloud Storage Tools (14)
79
+ ### Cloud Storage Tools (15)
83
80
 
84
81
  | Tool | Description |
85
82
  |------|-------------|
@@ -94,6 +91,7 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
94
91
  | `wireweave_cloud_delete_wireframe` | Delete a wireframe |
95
92
  | `wireweave_cloud_get_versions` | Get version history |
96
93
  | `wireweave_cloud_restore_version` | Restore to a previous version |
94
+ | `wireweave_cloud_diff_versions` | Compare two versions of a wireframe |
97
95
  | `wireweave_cloud_create_share_link` | Create a shareable link |
98
96
  | `wireweave_cloud_list_shares` | List share links |
99
97
  | `wireweave_gallery` | Browse public wireframe gallery |
@@ -120,8 +118,8 @@ Once configured, you can ask Claude:
120
118
  **Save to cloud:**
121
119
  > "Save this wireframe as 'Dashboard v2' in my project"
122
120
 
123
- **Export:**
124
- > "Export this wireframe to Figma format"
121
+ **Share:**
122
+ > "Create a shareable link for this wireframe"
125
123
 
126
124
  ## Architecture
127
125
 
@@ -137,7 +135,7 @@ Once configured, you can ask Claude:
137
135
  ```
138
136
 
139
137
  The MCP server is a thin client that:
140
- - Defines and exposes 32 tools to AI assistants
138
+ - Defines and exposes 30 tools to AI assistants
141
139
  - Forwards tool calls to the Wireweave API Server
142
140
  - Returns results back to the AI
143
141
 
@@ -147,11 +145,11 @@ All authentication, rate limiting, and business logic runs on the API Server.
147
145
 
148
146
  | Feature | Credits |
149
147
  |---------|---------|
150
- | Parse, Validate, Grammar, Guide, Patterns | 1 |
151
- | Render HTML/SVG | 2 |
148
+ | Parse, Validate | 1 |
149
+ | Grammar, Guide, Patterns, Examples, UX Rules | 0 (free) |
150
+ | Render HTML | 2 |
152
151
  | UX Validation | 3 |
153
152
  | Diff, Analyze | 2 |
154
- | Export JSON/Figma | 3 |
155
153
  | Cloud Save/Update | 1 |
156
154
  | Create Share Link | 5 |
157
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wireweave/mcp-server",
3
- "version": "1.3.0-beta.0",
3
+ "version": "1.3.0",
4
4
  "description": "MCP server for Wireweave DSL - Thin client for API Server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",