drifts for VS Code
io.github.geeks-accelerator/drifts
Multi-sensory AI experiences with time-locked progression and structured sensory data
client:VS Code
transport:stdio
runtime:npm
Install drifts in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "drifts-api-key",
"description": "DRIFTS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "drifts-api-url",
"description": "DRIFTS_API_URL",
"password": true
}
],
"servers": {
"drifts": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-drifts"
],
"env": {
"DRIFTS_API_KEY": "${input:drifts-api-key}",
"DRIFTS_API_URL": "${input:drifts-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