shift mcp server for VS Code
io.github.cyanheads/shift-mcp-server
Lightweight coordination layer for multiple AI agents working on the same codebase simultaneously.
client:VS Code
transport:stdio
runtime:npm
Install shift mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"shift-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/shift-mcp-server"
],
"env": {
"MCP_LOG_LEVEL": "${input:mcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs