constellation for VS Code
com.shiftinbits/constellation
Code Intelligence Platform for AI Coding Agents
client:VS Code
transport:stdio
runtime:npm
Install constellation in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "constellation-access-key",
"description": "CONSTELLATION_ACCESS_KEY",
"password": true
}
],
"servers": {
"constellation": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@constellationdev/mcp"
],
"env": {
"CONSTELLATION_ACCESS_KEY": "${input:constellation-access-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs