-
Notifications
You must be signed in to change notification settings - Fork 31
Add Figma MCP skill #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d8b4144
Add Figma MCP skill
neubig c9ccd68
fix: correct Figma MCP server URL
openhands-agent ebb5feb
Add figma skill to marketplace
openhands-agent 32e903d
Fix Figma MCP skill: consistent URL, progressive disclosure
openhands-agent 6eece67
Fix data inconsistency: clarify OAuth is automatic
openhands-agent cbca1b2
docs: address review comments on Figma MCP skill
openhands-agent 20a601a
Clarify Figma MCP README workflows
openhands-agent 1b8ab33
Clarify Figma MCP prompts and OAuth wording
openhands-agent 35b6afd
Merge remote-tracking branch 'origin/main' into add-figma-skill
openhands-agent 42cf1ea
fix: align figma skill with merged marketplace layout
openhands-agent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Figma MCP | ||
|
|
||
| Access Figma designs using the Figma MCP server. Read design files, extract components, get design tokens, and inspect layer properties. | ||
|
|
||
| ## Triggers | ||
|
|
||
| This skill is activated by the following keywords: | ||
|
|
||
| - `figma` | ||
| - `figma design` | ||
| - `figma mcp` | ||
|
|
||
| ## Details | ||
|
|
||
| The Figma MCP server provides tools to interact with Figma designs directly from OpenHands. It uses OAuth authentication to securely access your Figma account. | ||
|
|
||
| ## Installation | ||
|
|
||
| To install the Figma MCP server, run the following command in your terminal: | ||
|
|
||
| ```bash | ||
| openhands mcp add figma --transport http --auth oauth https://figma.com/mcp/sse | ||
|
neubig marked this conversation as resolved.
Outdated
|
||
| ``` | ||
|
|
||
| This will: | ||
| 1. Add the Figma MCP server to your OpenHands configuration | ||
| 2. Configure OAuth authentication (you'll be prompted to authorize when first used) | ||
| 3. Enable the server immediately | ||
|
|
||
| After installation, restart your OpenHands session to apply the changes. | ||
|
neubig marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## Verification | ||
|
|
||
| To verify the installation: | ||
|
|
||
| ```bash | ||
| openhands mcp list | ||
| ``` | ||
|
|
||
| You should see the Figma server listed with status "enabled". | ||
|
|
||
| ## Managing the Server | ||
|
|
||
| ```bash | ||
| # Disable the Figma MCP server | ||
| openhands mcp disable figma | ||
|
|
||
| # Re-enable the Figma MCP server | ||
| openhands mcp enable figma | ||
|
|
||
| # Remove the Figma MCP server | ||
| openhands mcp remove figma | ||
|
|
||
| # Get details about the Figma server | ||
| openhands mcp get figma | ||
|
neubig marked this conversation as resolved.
|
||
| ``` | ||
|
|
||
| ## Documentation | ||
|
|
||
| - Figma MCP Server: https://developers.figma.com/docs/figma-mcp-server | ||
| - Remote Server Installation: https://developers.figma.com/docs/figma-mcp-server/remote-server-installation/ | ||
| - Figma API: https://www.figma.com/developers/api | ||
|
neubig marked this conversation as resolved.
Outdated
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| --- | ||
|
neubig marked this conversation as resolved.
|
||
| name: figma | ||
| description: Access Figma designs using the Figma MCP server. Read design files, extract components, get design tokens, and inspect layer properties. | ||
|
neubig marked this conversation as resolved.
Outdated
|
||
| triggers: | ||
| - figma | ||
| - figma design | ||
| - figma mcp | ||
| --- | ||
|
|
||
| # Figma MCP | ||
|
|
||
| The Figma MCP server provides tools to interact with Figma designs directly from OpenHands. It uses OAuth authentication to securely access your Figma account. | ||
|
|
||
| ## Installation | ||
|
|
||
| To install the Figma MCP server, run the following command in your terminal: | ||
|
|
||
| ```bash | ||
| openhands mcp add figma --transport http https://mcp.figma.com/mcp | ||
|
neubig marked this conversation as resolved.
neubig marked this conversation as resolved.
neubig marked this conversation as resolved.
|
||
| ``` | ||
|
|
||
| This will: | ||
| 1. Add the Figma MCP server to your OpenHands configuration | ||
| 2. You'll be prompted to authorize via Figma OAuth when first used | ||
| 3. Enable the server immediately | ||
|
|
||
| After installation, restart your OpenHands session to apply the changes. | ||
|
|
||
| ## Verification | ||
|
|
||
| To verify the installation: | ||
|
|
||
| ```bash | ||
| openhands mcp list | ||
| ``` | ||
|
|
||
| You should see the Figma server listed with status "enabled". | ||
|
|
||
| ## Managing the Server | ||
|
|
||
| ```bash | ||
| # Disable the Figma MCP server | ||
| openhands mcp disable figma | ||
|
|
||
| # Re-enable the Figma MCP server | ||
| openhands mcp enable figma | ||
|
|
||
| # Remove the Figma MCP server | ||
| openhands mcp remove figma | ||
|
|
||
| # Get details about the Figma server | ||
| openhands mcp get figma | ||
| ``` | ||
|
|
||
| ## Documentation | ||
|
|
||
| - Figma MCP Server: https://developers.figma.com/docs/figma-mcp-server | ||
| - Remote Server Installation: https://developers.figma.com/docs/figma-mcp-server/remote-server-installation/ | ||
|
neubig marked this conversation as resolved.
Outdated
neubig marked this conversation as resolved.
Outdated
|
||
| - Figma API: https://www.figma.com/developers/api | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.