LaunchChair for VS Code
io.launchchair/agent
Plan, validate, and build products and features with LaunchChair.
client:VS Code
transport:stdio
runtime:npm
Install LaunchChair in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "launchchair-agent-token",
"description": "LAUNCHCHAIR_AGENT_TOKEN",
"password": true
}
],
"servers": {
"agent": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@launchchair/agent"
],
"env": {
"LAUNCHCHAIR_AGENT_TOKEN": "${input:launchchair-agent-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs