ShiftZap Restaurant Scheduling for VS Code
io.github.samueldesignsa/shiftzap
Manage restaurant employee scheduling, time-off, tips, and payroll via ShiftZap.
client:VS Code
transport:stdio
runtime:npm
Install ShiftZap Restaurant Scheduling in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shiftzap-api-key",
"description": "SHIFTZAP_API_KEY",
"password": true
}
],
"servers": {
"shiftzap": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@shiftzap/mcp-server"
],
"env": {
"SHIFTZAP_API_KEY": "${input:shiftzap-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs