Connecting Figma MCP Server with Google Antigravity
发布时间:2026-09-02 | 浏览:1
Forum categories
Ask the Community
Connecting Figma MCP Server with Google Antigravity
Is there anyone able to connect Figma MCP Server with Google Antigravity (I know it is not supported tool yet)?
I tried using client ID and secret, but I am receiving the following error:
Thanks a lot for comments!
Best answer by aaronjellis
I was able to get it working via the latest Antigravity… Just had to go into the editor, then hit these 3 dots and select MCP servers. It will ask you to install the Figma MCP config, then you should be able to run it just fine without much additional config. (easier than configuring claude code 😅).
Google Antigravity
Forum|Forum|8 months ago December 7, 2025
Yes I’d like to know if or when will this be possible, I would pay for figma in order to connect it to google anti gravity
New Participant
Forum|Forum|8 months ago December 9, 2025
I was able to get it working via the latest Antigravity… Just had to go into the editor, then hit these 3 dots and select MCP servers. It will ask you to install the Figma MCP config, then you should be able to run it just fine without much additional config. (easier than configuring claude code 😅).
Forum|Forum|8 months ago December 12, 2025
I was able to get it working via the latest Antigravity… Just had to go into the editor, then hit these 3 dots and select MCP servers. It will ask you to install the Figma MCP config, then you should be able to run it just fine without much additional config. (easier than configuring claude code 😅).
As always, @aaronjellis is helping us all succeed. 👋 What a small world moment.
I did have to go through “Manage MCP Servers” > “Configure” > “Uninstall” Then I reinstalled the MCP Server to get it working.
New Participant
Forum|Forum|8 months ago December 12, 2025
As always, @aaronjellis is helping us all succeed. 👋 What a small world moment.
lolol Happy to see your face here @Kirby Yardley ! If anyone has better guidance on how to get it to actually work well I’m all ears. Seems as though it pulls odd frames out of the file and struggles to really stay focused or get all the details. Figma Make is so good at adhering to the design, but I’ve yet to get Figma MCP to really stick to my screens. I have found a bit more luck using Dev Mode annotations while designing and telling the MCP server to pay attention to those.
Forum|Forum|8 months ago December 12, 2025
Anyone know how do I fix this?
Forum|Forum|8 months ago December 13, 2025
I was able to get it working via the latest Antigravity… Just had to go into the editor, then hit these 3 dots and select MCP servers. It will ask you to install the Figma MCP config, then you should be able to run it just fine without much additional config. (easier than configuring claude code 😅).
Thanks a lot @aaronjellis for your response ✌🏼 I was trying to work with Remote MCP server. I see that your way is for Local (Desktop) MCP server which is also fine. I hope soon we can also use the Remote server. But so far it works!
Forum|Forum|8 months ago December 15, 2025
hope for remote version sooooooon TAT
Toluwalope Opaleye
Forum|Forum|8 months ago December 16, 2025
Anyone know how do I fix this?
same here, tried uninstalling and installing but it’s pointless
Toluwalope Opaleye
Forum|Forum|8 months ago December 16, 2025
Anyone know how do I fix this?
I did somehow find a way to overcome this. first check if you have node.js installed. try uninstalling the figma mcp on your antigravity and disable the mcp server in figma. close both applications and try installing the mcp server in antigravity it would most likely fail after that enable the mcp server in figma and refresh the mcp in antigravity. it should work
Forum|Forum|8 months ago December 19, 2025
Anyone know how do I fix this?
same here, tried uninstalling and installing but it’s pointless
Hi Guys, I just asked the agent to fix this 👀 but it seems Node.js version was the issue.
Forum|Forum|8 months ago December 23, 2025
Has anyone tried connecting to a cloud MCP server?
I tried using the official config: { "mcpServers": { "Figma": { "url": "https://mcp.figma.com/mcp" } } } and also switching to Antigravity’s format: { "mcpServers": { "Figma": { "serverUrl": "https://mcp.figma.com/mcp" } } } Result in the error: Error: streamable http connection failed: calling "initialize": sending "initialize": Unauthorized, sse fallback failed: missing endpoint: first event is "", want "endpoint". Looks like I must give it access token, but where to set it?
Forum|Forum|8 months ago December 23, 2025
Has anyone tried connecting to a cloud MCP server?
I tried using the official config: { "mcpServers": { "Figma": { "url": "https://mcp.figma.com/mcp" } } } and also switching to Antigravity’s format: { "mcpServers": { "Figma": { "serverUrl": "https://mcp.figma.com/mcp" } } } Result in the error: Error: streamable http connection failed: calling "initialize": sending "initialize": Unauthorized, sse fallback failed: missing endpoint: first event is "", want "endpoint". Looks like I must give it access token, but where to set it?
I ended up building this repo locally: https://github.com/GLips/Figma-Context-MCP.git Using the absolute path for Node (since I'm using NVM and Antigravity couldn't find it some how...), and clearing out the welcome messages that break the protocol. { "mcpServers": { "figma-context": { "command": "/bin/sh", "args": [ "-c", "FIGMA_API_KEY='your key' NODE_ENV=cli /home/{user}/.nvm/versions/node/v22.21.1/bin/node /home/{user}/ws/Figma-Context-MCP/dist/bin.js 2>/dev/null" ] } } }
Forum|Forum|8 months ago December 24, 2025
Forum|Forum|8 months ago December 26, 2025
"mcpServers": {
"command": "npx",
"@modelcontextprotocol/server-figma"
"FIGMA_PERSONAL_ACCESS_TOKEN": "XXXXX"
"figma-dev-mode-mcp-server": {
"command": "npx",
"http://127.0.0.1:3845/sse"
Forum|Forum|8 months ago December 30, 2025
謝謝 這個配置比build第三方套件簡單多了 不過我還是抓不到npx所以改用sh+絕對路徑 (Alternative setup for those encountering "Error: exec: "npx": executable file not found in $PATH." errors.) { "mcpServers": { "figma-dev-mode-mcp-server": { "command": "/bin/sh", "args": [ "-c", "PATH=$PATH:/home/{user}/.nvm/versions/node/{version}/bin /home/{user}/.nvm/versions/node/{version}/bin/npx -y figma-developer-mcp --stdio" ], "env": { "FIGMA_API_KEY": "xxx" } } } }
Forum|Forum|8 months ago December 30, 2025
Solution: Just install node.js https://nodejs.org/en/download/current , once installed restart your device for the path to work. Reinstall the mcp.
Chayanoon Ahpaiwong
Forum|Forum|7 months ago January 7, 2026
Forum|Forum|7 months ago January 7, 2026
Solution: Just install node.js https://nodejs.org/en/download/current , once installed restart your device for the path to work. Reinstall the mcp.
Forum|Forum|7 months ago January 7, 2026
for remote servers it needs to know who you are. Just add you PAT into mcp_config.json
to get token go to figma - profile - settings - security and generate new token
ARIEF BUDIMAN NASUKO
Forum|Forum|7 months ago January 12, 2026
Solution: Just install node.js https://nodejs.org/en/download/current , once installed restart your device for the path to work. Reinstall the mcp.
Yap, it works, min using node 22+
Forum|Forum|7 months ago January 23, 2026
I think it’s still not working for linux. I get this while installing figma mcp via antigravity gui:
Forum|Forum|7 months ago January 26, 2026
Solution: Just install node.js https://nodejs.org/en/download/current , once installed restart your device for the path to work. Reinstall the mcp.
I had version 22 of the node, then updated to 25 and it's still not working. Any other tips?
OS: Ubuntu 25.10 Antigravity Version: 1.14.2 VSCode OSS Version: 1.104.0 Commit: 450b6b28083d737992adc5d19637f22c95ffba7b Date: 2026-01-13T02:07:24.766Z (1 wk ago) Electron: 37.3.1 Chromium: 138.0.7204.235 Node.js: 22.18.0 V8: 13.8.258.31-electron.0 OS: Linux x64 6.17.0-8-generic Language Server CL: 855455936
Nguyễn Thanh Hưng
Forum|Forum|7 months ago January 28, 2026
Solution: Just install node.js https://nodejs.org/en/download/current , once installed restart your device for the path to work. Reinstall the mcp.
I can’t even i use latest nodejs but issue still happen :(
Forum|Forum|6 months ago February 13, 2026
Anyone know how do I fix this?
Check if you open up your FIGMA MCP (dev mode)
Forum|Forum|6 months ago February 13, 2026
I think it’s still not working for linux. I get this while installing figma mcp via antigravity gui:
Update mcp_config.json to this works for me. I don’t use local mcp server
Already have an account? Login
Login to the community
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.