Figma MCP Server provides integration with Figma's API, enabling AI assistants to interact with Figma design files and team resources directly within conversations. The implementation offers tools for file operations (retrieving file information, version history, components), comment management, project and team features, and webhook administration - all authenticated through a Figma access token. Built as a Node.js application using the MCP SDK and Axios for API communication, it's particularly valuable for design workflows that require reviewing, commenting on, or analyzing Figma files without leaving the conversation interface.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Get information about a Figma file. Parameters: file_key (string)
Get version history of a file. Parameters: file_key (string)
Get components in a file. Parameters: file_key (string)
Get comments from a file. Parameters: file_key (string)
Post a comment to a file. Parameters: file_key (string), message (string)
Delete a comment from a file. Parameters: file_key (string), comment_id (string)
Get projects for a team. Parameters: team_id (string)
Get files in a project. Parameters: project_id (string)
Get published styles. Parameters: team_id (string)
Create a webhook. Parameters: team_id (string), event_type (string), callback_url (string)
List webhooks. Parameters: team_id (string)
Delete a webhook. Parameters: webhook_id (string)