Quality Control Plan Generator for VS Code
com.imnoo/quality-control-plan
Quality control plans from drawing PDFs: auto-extracted tolerances, balloons, Excel + PDF reports.
client:VS Code
transport:stdio
runtime:npm
Install Quality Control Plan Generator in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "qcp-app-url",
"description": "QCP_APP_URL",
"password": true
}
],
"servers": {
"quality-control-plan": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"quality-control-plan-mcp"
],
"env": {
"QCP_APP_URL": "${input:qcp-app-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs