rightos mcp for VS Code
io.github.suomimasuda/rightos-mcp
RightOS MCP: privacy-first QR queue/EV/pickup. 18 tools, no end-user PII.
client:VS Code
transport:stdio
runtime:npm
Install rightos mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rightos-api-key",
"description": "RIGHTOS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "rightos-base-url",
"description": "RIGHTOS_BASE_URL",
"password": true
}
],
"servers": {
"rightos-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@i-s3/rightos-mcp"
],
"env": {
"RIGHTOS_API_KEY": "${input:rightos-api-key}",
"RIGHTOS_BASE_URL": "${input:rightos-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