designpin mcp server for VS Code
io.github.opjhabuilds/designpin-mcp-server
Push HTML prototypes to DesignPin for team review and pull reviewer feedback into your AI.
client:VS Code
transport:stdio
runtime:npm
Install designpin mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "designpin-api-key",
"description": "DESIGNPIN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "designpin-project-id",
"description": "DESIGNPIN_PROJECT_ID",
"password": true
},
{
"type": "promptString",
"id": "designpin-base-url",
"description": "DESIGNPIN_BASE_URL",
"password": true
}
],
"servers": {
"designpin-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@designpin/mcp-server"
],
"env": {
"DESIGNPIN_API_KEY": "${input:designpin-api-key}",
"DESIGNPIN_PROJECT_ID": "${input:designpin-project-id}",
"DESIGNPIN_BASE_URL": "${input:designpin-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs