opsmaxx for VS Code
io.github.opsmaxx/opsmaxx
SSH, files, containers and databases via the OpsMaxx desktop app - scoped per capability, audited.
client:VS Code
transport:stdio
runtime:npm
Install opsmaxx in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "opsmaxx-mcp-token",
"description": "OPSMAXX_MCP_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "opsmaxx-mcp-port",
"description": "OPSMAXX_MCP_PORT",
"password": true
}
],
"servers": {
"opsmaxx": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@opsmaxx/mcp"
],
"env": {
"OPSMAXX_MCP_TOKEN": "${input:opsmaxx-mcp-token}",
"OPSMAXX_MCP_PORT": "${input:opsmaxx-mcp-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs