From f7209dd0a367ea7012f0b5670c99977a9eb7cebd Mon Sep 17 00:00:00 2001 From: Lorenz Hilpert Date: Thu, 23 Oct 2025 19:00:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20add=20Figma=20Desktop?= =?UTF-8?q?=20MCP=20server=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure Figma Desktop MCP server for design-to-code workflows: - HTTP connection on localhost:3845 - Enables design context and code generation from Figma --- .mcp.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.mcp.json b/.mcp.json index 3bdfc3cc8..cd7d1baa3 100644 --- a/.mcp.json +++ b/.mcp.json @@ -13,6 +13,10 @@ "type": "stdio", "command": "npx", "args": ["@angular/cli", "mcp"] + }, + "figma-desktop": { + "type": "http", + "url": "http://127.0.0.1:3845/mcp" } } }