with-figma 0.1.3 → 0.1.4

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/bin/with-figma.js CHANGED
@@ -48,13 +48,16 @@ if (command === "init") {
48
48
  // Show Figma plugin path
49
49
  const manifestPath = path.join(PKG_ROOT, "figma-plugin", "manifest.json");
50
50
  console.log("");
51
- console.log("MCP server configured. Next steps:");
51
+ console.log("Done! Next steps:");
52
52
  console.log("");
53
- console.log("1. Import Figma plugin:");
53
+ console.log("1. Import Figma plugin (one-time):");
54
54
  console.log(" Figma → Plugins → Development → Import plugin from manifest");
55
55
  console.log(" Path: " + manifestPath);
56
56
  console.log("");
57
- console.log("2. Restart VS Code or Claude Code");
57
+ console.log("2. Start MCP server (no editor restart needed):");
58
+ console.log(" VS Code: Ctrl+Shift+P → 'MCP: List Servers' → start 'with-figma'");
59
+ console.log(" Claude Code: /mcp → restart 'with-figma'");
60
+ console.log("");
58
61
  console.log("3. Open the plugin in Figma → select elements → chat with AI");
59
62
 
60
63
  process.exit(0);
@@ -9,5 +9,6 @@
9
9
  "allowedDomains": ["http://localhost:3055", "ws://localhost:3055"],
10
10
  "reasoning": "WebSocket connection to local MCP server"
11
11
  },
12
- "permissions": ["currentuser"]
12
+ "permissions": ["currentuser"],
13
+ "capabilities": ["inspect"]
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "with-figma",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server that connects AI agents to Figma via WebSocket",
5
5
  "license": "MIT",
6
6
  "bin": {