simplisafe mcp for VS Code
io.github.chrischall/simplisafe-mcp
Check SimpliSafe system state and sensors, review events, arm/disarm, and control smart locks
client:VS Code
transport:stdio
runtime:npm
Install simplisafe mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "simplisafe-refresh-token",
"description": "SIMPLISAFE_REFRESH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "simplisafe-token-cache",
"description": "SIMPLISAFE_TOKEN_CACHE",
"password": true
},
{
"type": "promptString",
"id": "simplisafe-token-file",
"description": "SIMPLISAFE_TOKEN_FILE",
"password": true
}
],
"servers": {
"simplisafe-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"simplisafe-mcp"
],
"env": {
"SIMPLISAFE_REFRESH_TOKEN": "${input:simplisafe-refresh-token}",
"SIMPLISAFE_TOKEN_CACHE": "${input:simplisafe-token-cache}",
"SIMPLISAFE_TOKEN_FILE": "${input:simplisafe-token-file}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs