MCP Server
io.github.felixAnhalt/Figma-Context-MCP MCP Server
io.github.felixAnhalt/Figma-Context-MCP
What is the io.github.felixAnhalt/Figma-Context-MCP MCP server?
LLM-optimized Figma MCP server.
How to install io.github.felixAnhalt/Figma-Context-MCP
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
FIGMA_API_KEYrequiredsecretYour Figma Personal Access Token, learn more here: https://www.figma.com/developers/api#access-tokens
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"Figma-Context-MCP": {
"command": "npx",
"args": [
"-y",
"@tmegit/figma-developer-mcp",
"--stdio"
],
"env": {
"FIGMA_API_KEY": "<YOUR_FIGMA_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"Figma-Context-MCP": {
"command": "npx",
"args": [
"-y",
"@tmegit/figma-developer-mcp",
"--stdio"
],
"env": {
"FIGMA_API_KEY": "<YOUR_FIGMA_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"Figma-Context-MCP": {
"command": "npx",
"args": [
"-y",
"@tmegit/figma-developer-mcp",
"--stdio"
],
"env": {
"FIGMA_API_KEY": "<YOUR_FIGMA_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"Figma-Context-MCP": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@tmegit/figma-developer-mcp",
"--stdio"
],
"env": {
"FIGMA_API_KEY": "<YOUR_FIGMA_API_KEY>"
}
}
}
}Claude Code
claude mcp add Figma-Context-MCP --env FIGMA_API_KEY=<YOUR_FIGMA_API_KEY> -- npx -y @tmegit/figma-developer-mcp --stdio