@atezer/figma-mcp-bridge 1.7.3 → 1.7.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/README.md CHANGED
@@ -45,22 +45,7 @@ F-MCP Bridge'in çalışması için bilgisayarınızda Node.js olması gerekiyor
45
45
 
46
46
  ### 2. AI aracınıza config ekleyin
47
47
 
48
- Aşağıdaki JSON bloğunu AI aracınızın config dosyasına ekleyin. Bu, AI aracına "Figma ile nasıl konuşacağını" öğretir.
49
-
50
- **Cursor** — Proje klasörünüzde `.cursor/mcp.json` dosyası oluşturun (yoksa yeni dosya açın):
51
-
52
- ```json
53
- {
54
- "mcpServers": {
55
- "figma-mcp-bridge": {
56
- "command": "npx",
57
- "args": ["-y", "@atezer/figma-mcp-bridge@latest", "figma-mcp-bridge-plugin"]
58
- }
59
- }
60
- }
61
- ```
62
-
63
- **Claude Desktop** — Settings → Developer → Edit Config tıklayın (veya macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` açın):
48
+ Aşağıdaki JSON'u AI aracınızın config dosyasına ekleyin:
64
49
 
65
50
  ```json
66
51
  {
@@ -73,20 +58,13 @@ Aşağıdaki JSON bloğunu AI aracınızın config dosyasına ekleyin. Bu, AI ar
73
58
  }
74
59
  ```
75
60
 
76
- **Claude Code** Proje klasörünüzde `.mcp.json` dosyası oluşturun (yoksa yeni dosya açın):
77
-
78
- ```json
79
- {
80
- "mcpServers": {
81
- "figma-mcp-bridge": {
82
- "command": "npx",
83
- "args": ["-y", "@atezer/figma-mcp-bridge@latest", "figma-mcp-bridge-plugin"]
84
- }
85
- }
86
- }
87
- ```
61
+ Config dosyasının konumu AI aracınıza göre değişir:
88
62
 
89
- > **Claude Code kullanıcıları için önemli:** Config dosyası `.mcp.json` olmalıdır (proje kökünde). `~/.claude/settings.json` dosyası MCP sunucuları için **çalışmaz** — o dosya sadece izinler (permissions) içindir.
63
+ | AI Aracı | Config Dosyası |
64
+ |----------|---------------|
65
+ | **Cursor** | `.cursor/mcp.json` (proje klasörü) |
66
+ | **Claude Desktop** | `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) |
67
+ | **Claude Code** | `.mcp.json` (proje klasörü) |
90
68
 
91
69
  ### 3. Figma'da plugin'i açın
92
70
 
@@ -197,7 +175,7 @@ Detaylı sorun giderme: [TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md)
197
175
 
198
176
  | Bilgi | Kaynak |
199
177
  |-------|--------|
200
- | Güncel sürüm | **1.7.3** ([package.json](package.json)) |
178
+ | Güncel sürüm | **1.7.4** ([package.json](package.json)) |
201
179
  | Değişiklik geçmişi | [CHANGELOG.md](CHANGELOG.md) |
202
180
  | GitHub sürümleri | [Releases](https://github.com/atezer/FMCP/releases) |
203
181
  | npm paketi | [@atezer/figma-mcp-bridge](https://www.npmjs.com/package/@atezer/figma-mcp-bridge) |
@@ -281,7 +281,7 @@ export class PluginBridgeServer {
281
281
  logger.info({ clientId, fileKey: incomingFileKey, fileName: incomingFileName }, "Plugin bridge: client registered (fileKey=%s, fileName=%s)", incomingFileKey, incomingFileName);
282
282
  ws.send(JSON.stringify({
283
283
  type: "welcome",
284
- bridgeVersion: "1.7.3",
284
+ bridgeVersion: "1.7.4",
285
285
  port: this.port,
286
286
  clientId,
287
287
  multiClient: true,
@@ -89,7 +89,7 @@ export async function main() {
89
89
  bridge.start();
90
90
  const server = new McpServer({
91
91
  name: "F-MCP ATezer Bridge (Plugin-only)",
92
- version: "1.7.3",
92
+ version: "1.7.4",
93
93
  });
94
94
  // ---- figma_list_connected_files (multi-client discovery) ----
95
95
  server.registerTool("figma_list_connected_files", {
package/dist/local.js CHANGED
@@ -48,7 +48,7 @@ class LocalFigmaMCP {
48
48
  this.variablesCache = new Map();
49
49
  this.server = new McpServer({
50
50
  name: "F-MCP ATezer (Local)",
51
- version: "1.7.3",
51
+ version: "1.7.4",
52
52
  });
53
53
  }
54
54
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atezer/figma-mcp-bridge",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "F-MCP ATezer: MCP server and Figma plugin bridge for Claude/Cursor. No REST token required.",
5
5
  "type": "module",
6
6
  "main": "dist/local.js",