Help us improve
Share bugs, ideas, or general feedback.
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-codeCopy this JSON into your .mcp.json to enable this server
Add 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
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
uvxCommand-line arguments passed to the server process
Environment variables set when the server starts
PENPOT_API_URL=http://localhost:9001/apiPENPOT_PASSWORD=123123123PENPOT_USERNAME=demo@example.comSensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.