Skip to content

Commit 52dec59

Browse files
Add Figma MCP plugin
Adds a new Figma plugin that integrates the official Figma MCP server (SSE transport at https://mcp.figma.com/mcp) for design and collaboration. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 3fea6c1 commit 52dec59

6 files changed

Lines changed: 95 additions & 0 deletions

File tree

.cursor-plugin/marketplace.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@
6767
"name": "create-plugin",
6868
"source": "create-plugin",
6969
"description": "Scaffold and validate new Cursor plugins."
70+
},
71+
{
72+
"name": "figma",
73+
"source": "figma",
74+
"description": "Figma MCP integration for design and collaboration."
7075
}
7176
]
7277
}

figma/.cursor-plugin/plugin.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "figma",
3+
"displayName": "Figma",
4+
"version": "1.0.0",
5+
"description": "Figma MCP integration for design and collaboration.",
6+
"author": {
7+
"name": "Cursor",
8+
"email": "plugins@cursor.com"
9+
},
10+
"homepage": "https://github.com/cursor/plugins",
11+
"repository": "https://github.com/cursor/plugins",
12+
"license": "MIT",
13+
"logo": "./icon.svg",
14+
"keywords": ["figma", "design", "mcp", "collaboration"],
15+
"mcpServers": "./mcp.json"
16+
}

figma/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Cursor
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

figma/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Figma plugin
2+
3+
Figma MCP integration for design and collaboration.
4+
5+
## Installation
6+
7+
```bash
8+
agent install figma
9+
```
10+
11+
## Components
12+
13+
### MCP Servers
14+
15+
| Server | Description |
16+
|:-------|:------------|
17+
| `Figma` | Design and collaboration platform for teams (SSE) |
18+
19+
## License
20+
21+
MIT

figma/icon.svg

Lines changed: 24 additions & 0 deletions
Loading

figma/mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "Figma",
3+
"description": "Design and collaboration platform for teams.",
4+
"transport": ["sse"],
5+
"config": {
6+
"url": "https://mcp.figma.com/mcp"
7+
}
8+
}

0 commit comments

Comments
 (0)