emplyx for VS Code
io.github.ezemiz/emplyx
Emplyx HR Platform - 346+ tools for employees, schedules, time tracking & payroll
client:VS Code
transport:stdio
runtime:npm
Install emplyx in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "emplyx-api-key",
"description": "EMPLYX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "emplyx-api-url",
"description": "EMPLYX_API_URL",
"password": true
}
],
"servers": {
"emplyx": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@emplyx/mcp-server"
],
"env": {
"EMPLYX_API_KEY": "${input:emplyx-api-key}",
"EMPLYX_API_URL": "${input:emplyx-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs