A collection of AI tool configurations and integrations for development workflows.
- Figma MCP Integration - Connect Cursor IDE to Figma for design-to-code workflows
- MCP Server Configurations - Pre-configured Model Context Protocol servers
The Figma MCP allows Cursor's AI to directly access your Figma designs, fetch layout data, and download assets.
- Get a Figma Personal Access Token
- Update
.cursor/mcp.jsonwith your API key - Restart Cursor IDE
See docs/figma-mcp-setup.md for detailed setup instructions.
# Clone the repository
git clone https://github.com/your-username/ai-tools.git
cd ai-tools
# Copy and configure MCP settings
cp .cursor/mcp.json ~/.cursor/mcp.json
# Edit ~/.cursor/mcp.json and add your Figma API keyai-tools/
├── .cursor/
│ ├── mcp.json # MCP server configuration template
│ └── rules/
│ └── figma-mcp.mdc # Figma MCP usage guidelines
├── docs/
│ └── figma-mcp-setup.md # Detailed setup documentation
├── LICENSE
└── README.md
| Integration | Description | Status |
|---|---|---|
| Figma MCP | Design-to-code with Figma | ✅ Ready |
Once configured, you can use Figma MCP in Cursor by:
- Opening Agent mode (Cmd/Ctrl + I)
- Sharing a Figma URL
- Asking the AI to convert the design to code
Example prompts:
- "Get the design data from [Figma URL]"
- "Convert this Figma design to React components"
- "Download the icons from [Figma URL] to src/assets"
- The
.cursor/mcp.jsontemplate uses a placeholder for the API key - For production use, configure your API key in
~/.cursor/mcp.json(global) - Consider using environment variables for sensitive data
See LICENSE for details.