Termix for VS Code
io.github.sujirodev/termix-mcp
Manage hosts, snippets, dashboard, metrics and audit of a self-hosted Termix (SSH/RDP/VNC manager)
client:VS Code
transport:stdio
runtime:pypi
Install Termix in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "termix-url",
"description": "TERMIX_URL",
"password": true
},
{
"type": "promptString",
"id": "termix-api-key",
"description": "TERMIX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "termix-mcp-toolsets",
"description": "TERMIX_MCP_TOOLSETS",
"password": true
},
{
"type": "promptString",
"id": "termix-mcp-read-only",
"description": "TERMIX_MCP_READ_ONLY",
"password": true
}
],
"servers": {
"termix-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"termix-mcp"
],
"env": {
"TERMIX_URL": "${input:termix-url}",
"TERMIX_API_KEY": "${input:termix-api-key}",
"TERMIX_MCP_TOOLSETS": "${input:termix-mcp-toolsets}",
"TERMIX_MCP_READ_ONLY": "${input:termix-mcp-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs