mcp for VS Code
com.sketchxflow/mcp
Design websites, apps and logos with SketchXFlow — and brief its development team.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sketchxflow-api-key",
"description": "SKETCHXFLOW_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sketchxflow-api-url",
"description": "SKETCHXFLOW_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sketchxflow/mcp"
],
"env": {
"SKETCHXFLOW_API_KEY": "${input:sketchxflow-api-key}",
"SKETCHXFLOW_API_URL": "${input:sketchxflow-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs