Skip to main content
Glama

Claude Talk to Figma MCP

by arinspunk
setup.sh666 B
#!/bin/bash # Detect package manager if command -v bun &> /dev/null; then PACKAGE_MANAGER="bun" echo "Bun detected, using it for setup..." else PACKAGE_MANAGER="npm" echo "Bun not found, using npm instead..." fi # Install dependencies echo "Installing dependencies..." if [ "$PACKAGE_MANAGER" = "bun" ]; then bun install else npm install fi # Configure for Claude Desktop echo "Configuring for Claude Desktop..." node scripts/configure-claude.js echo "Configuration completed." echo "To use the MCP, make sure to start the WebSocket server:" if [ "$PACKAGE_MANAGER" = "bun" ]; then echo "bun socket" else echo "npm run socket" fi

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/arinspunk/claude-talk-to-figma-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server