operandi for VS Code
cc.operandi/operandi
Grounded, safety-checked appliance operation packages for robots and agents. Zero-config trial.
client:VS Code
transport:stdio
runtime:pypi
Install operandi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "operandi-api-url",
"description": "OPERANDI_API_URL",
"password": true
},
{
"type": "promptString",
"id": "operandi-api-key",
"description": "OPERANDI_API_KEY",
"password": true
}
],
"servers": {
"operandi": {
"type": "stdio",
"command": "uvx",
"args": [
"operandi-mcp"
],
"env": {
"OPERANDI_API_URL": "${input:operandi-api-url}",
"OPERANDI_API_KEY": "${input:operandi-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs