ac jobs for VS Code
io.github.wchampe/ac-jobs
Admission gate for AI agents: submit a step, get admit/hold/reject vs your constitution.
client:VS Code
transport:stdio
runtime:pypi
Install ac jobs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ac-jobs-api-key",
"description": "AC_JOBS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ac-jobs-url",
"description": "AC_JOBS_URL",
"password": true
}
],
"servers": {
"ac-jobs": {
"type": "stdio",
"command": "uvx",
"args": [
"ac-jobs-mcp"
],
"env": {
"AC_JOBS_API_KEY": "${input:ac-jobs-api-key}",
"AC_JOBS_URL": "${input:ac-jobs-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs