From design-to-code
Connects to Penpot design platform API for accessing UI/UX designs, files, and prototypes. Runs locally as stdio subprocess via penpot-mcp. Requires Penpot API URL, username, and password.
npx claudepluginhub arustydev/agents --plugin design-to-codeAdd to your .mcp.json:
{
"mcpServers": {
"penpot": {
"command": "uvx",
"args": [
"penpot-mcp"
],
"env": {
"PENPOT_API_URL": "http://localhost:9001/api",
"PENPOT_PASSWORD": "123123123",
"PENPOT_USERNAME": "demo@example.com"
}
}
}
}Replace placeholder values for: PENPOT_PASSWORD
This MCP server needs API keys or credentials. Configure them in your environment before use.
uvxPENPOT_API_URL=http://localhost:9001/apiPENPOT_PASSWORD=123123123PENPOT_USERNAME=demo@example.com