salonrunner mcp for VS Code
io.github.topness-msft/salonrunner-mcp
Self-hosted MCP to find, book, and cancel salon appointments via SalonRunner.
client:VS Code
transport:stdio
runtime:npm
Install salonrunner mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "salonrunner-salon-id",
"description": "SALONRUNNER_SALON_ID",
"password": true
},
{
"type": "promptString",
"id": "salonrunner-username",
"description": "SALONRUNNER_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "salonrunner-password",
"description": "SALONRUNNER_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "salonrunner-read-only",
"description": "SALONRUNNER_READ_ONLY",
"password": true
}
],
"servers": {
"salonrunner-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"salonrunner-mcp"
],
"env": {
"SALONRUNNER_SALON_ID": "${input:salonrunner-salon-id}",
"SALONRUNNER_USERNAME": "${input:salonrunner-username}",
"SALONRUNNER_PASSWORD": "${input:salonrunner-password}",
"SALONRUNNER_READ_ONLY": "${input:salonrunner-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