# Figma API Access Token
# Get your token from Figma.com > Account Settings > Access Tokens
FIGMA_ACCESS_TOKEN=your_token_here
# Server Configuration
MCP_SERVER_PORT=3000
# Debug Configuration
DEBUG=figma-mcp:*
###############################################
# CLAUDE DESKTOP CONFIGURATION REFERENCE
###############################################
# The figma-mcp-server can be used with Claude Desktop by adding the following
# to your claude_desktop_config.json file (located at the paths below):
#
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%\Claude\claude_desktop_config.json
#
# {
# "mcpServers": {
# "figma": {
# "command": "node",
# "args": ["/ABSOLUTE/PATH/TO/figma-mcp-server/dist/index.js"],
# "env": {
# "FIGMA_ACCESS_TOKEN": "your_token_here"
# }
# }
# }
# }
#
# IMPORTANT:
# - Use ABSOLUTE paths, not relative paths
# - On Windows, use double backslashes (\\) in paths
# - Restart Claude Desktop after making configuration changes