asuswrt mcp for VS Code
io.github.teefloo/asuswrt-mcp
Secure AsusWRT router administration via SSH — 42+ tools, guarded mutations
client:VS Code
transport:stdio
runtime:pypi
Install asuswrt mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "asuswrt-host",
"description": "ASUSWRT_HOST",
"password": true
},
{
"type": "promptString",
"id": "asuswrt-ssh-username",
"description": "ASUSWRT_SSH_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "asuswrt-ssh-password",
"description": "ASUSWRT_SSH_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "asuswrt-ssh-key-file",
"description": "ASUSWRT_SSH_KEY_FILE",
"password": true
},
{
"type": "promptString",
"id": "asuswrt-allow-mutations",
"description": "ASUSWRT_ALLOW_MUTATIONS",
"password": true
}
],
"servers": {
"asuswrt-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"asuswrt-mcp"
],
"env": {
"ASUSWRT_HOST": "${input:asuswrt-host}",
"ASUSWRT_SSH_USERNAME": "${input:asuswrt-ssh-username}",
"ASUSWRT_SSH_PASSWORD": "${input:asuswrt-ssh-password}",
"ASUSWRT_SSH_KEY_FILE": "${input:asuswrt-ssh-key-file}",
"ASUSWRT_ALLOW_MUTATIONS": "${input:asuswrt-allow-mutations}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs