jobd for VS Code
io.github.musharna/jobd
Self-hostable GPU-aware job broker: submit, route by VRAM, babysit jobs across machines via MCP.
client:VS Code
transport:stdio
runtime:pypi
Install jobd in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jobd-url",
"description": "JOBD_URL",
"password": true
}
],
"servers": {
"jobd": {
"type": "stdio",
"command": "uvx",
"args": [
"jobd"
],
"env": {
"JOBD_URL": "${input:jobd-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs