Skip to main content
Glama

Figma MCP Server

by bbalakriz
Containerfile812 B
FROM registry.access.redhat.com/ubi8/nodejs-20:latest LABEL name="figma-mcp-server" \ version="1.0" \ description="Figma MCP Server" \ maintainer="bbalasub@redhat.com" WORKDIR /opt/app-root/src USER root RUN dnf update -y && \ dnf install -y curl && \ dnf clean all && \ rm -rf /var/cache/dnf USER 1001 COPY --chown=1001:0 package*.json ./ RUN npm ci --only=production && \ npm cache clean --force COPY --chown=1001:0 . . EXPOSE 3333 ENV FIGMA_API_KEY="" HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \ CMD curl -f http://localhost:3333/sse || exit 1 CMD ["sh", "-c", "if [ -z \"$FIGMA_API_KEY\" ]; then echo 'Error: FIGMA_API_KEY environment variable is required'; exit 1; fi && npx figma-developer-mcp --figma-api-key $FIGMA_API_KEY"]

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/bbalakriz/figma-mcp-server'

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