SkeletIQ for VS Code
com.skeletiq/mcp
Hand a released SkeletIQ architecture to a coding agent: brief, build order, drift check.
client:VS Code
transport:stdio
runtime:npm
Install SkeletIQ in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "skeletiq-api-key",
"description": "SKELETIQ_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "skeletiq-api-url",
"description": "SKELETIQ_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@skeletiq/mcp"
],
"env": {
"SKELETIQ_API_KEY": "${input:skeletiq-api-key}",
"SKELETIQ_API_URL": "${input:skeletiq-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