smartrent mcp for VS Code
io.github.evin009/smartrent-mcp
Control SmartRent smart home devices (locks, thermostat, switches, sensors) via Claude
client:VS Code
transport:stdio
runtime:pypi
Install smartrent mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "smartrent-email",
"description": "SMARTRENT_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "smartrent-password",
"description": "SMARTRENT_PASSWORD",
"password": true
}
],
"servers": {
"smartrent-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"smartrent-mcp"
],
"env": {
"SMARTRENT_EMAIL": "${input:smartrent-email}",
"SMARTRENT_PASSWORD": "${input:smartrent-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs