Best for
- Frontend developers
- Design engineers
- Teams prototyping with Claude Code
This server focuses on design-to-code conversion with clear functionality, but it's community-maintained and not official. Use with caution regarding credentials and generated code quality.
design-to-code is an MCP server that converts Figma design files and screenshots into usable frontend components, supporting frameworks like React, Svelte, and Vue. It is part of the Claude Code plugin marketplace under the Design category, runs over stdio, and includes built-in accessibility features. The server resides in the plugins/mcp/design-to-code subfolder of the jeremylongshore/claude-code-plugins-plus-skills repository and is distributed as an npm package.
Ensure Node.js and npm are installed. Then add the server in your MCP client configuration: set mcpServers.design-to-code with command 'npx' and args ['-y', '@claude-code-plugins-plus/design-to-code']. Alternatively, in Claude Code, add the marketplace with '/plugin marketplace add jeremylongshore/claude-code-plugins' and then '/plugin install design-to-code@claude-code-plugins-plus'.
{
"mcpServers": {
"design-to-code": {
"command": "npx",
"args": [
"-y",
"@claude-code-plugins-plus/design-to-code"
]
}
}
}