deputy workforce mcp for VS Code
io.github.hyperdrift-io/deputy-workforce-mcp
Read-only Deputy coverage, workload, timesheet, availability, and staffing signals.
client:VS Code
transport:stdio
runtime:npm
Install deputy workforce mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "deputy-mode",
"description": "DEPUTY_MODE",
"password": true
},
{
"type": "promptString",
"id": "deputy-base-url",
"description": "DEPUTY_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "deputy-access-token",
"description": "DEPUTY_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "deputy-auth-scheme",
"description": "DEPUTY_AUTH_SCHEME",
"password": true
}
],
"servers": {
"deputy-workforce-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hyperdrift-io/deputy-workforce-mcp"
],
"env": {
"DEPUTY_MODE": "${input:deputy-mode}",
"DEPUTY_BASE_URL": "${input:deputy-base-url}",
"DEPUTY_ACCESS_TOKEN": "${input:deputy-access-token}",
"DEPUTY_AUTH_SCHEME": "${input:deputy-auth-scheme}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs