ci1t mcp for VS Code
io.github.collapseindex/ci1t-mcp
CI-1T prediction stability engine. Detect ghosts, evaluate drift, monitor fleets. 20 tools.
client:VS Code
transport:stdio
runtime:npm
Install ci1t mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ci1t-api-key",
"description": "CI1T_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ci1t-base-url",
"description": "CI1T_BASE_URL",
"password": true
}
],
"servers": {
"ci1t-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@collapseindex/ci1t-mcp"
],
"env": {
"CI1T_API_KEY": "${input:ci1t-api-key}",
"CI1T_BASE_URL": "${input:ci1t-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs