Skip to content
VS Code

Figma MCP Server for VS Code

io.github.planetabhi/figma-mcp-server

A local MCP server with full Figma REST API coverage.

client:VS Code transport:stdio runtime:npm

Install Figma MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "figma-api-key",
      "description": "FIGMA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "figma-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "figma-mcp-server"
      ],
      "env": {
        "FIGMA_API_KEY": "${input:figma-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Figma MCP Server in other clients