Cedulon for VS Code
io.github.dogrucanemek-alt/cedulon
Policy-gated agent spend with signed receipts and rail-extract audit
client:VS Code
transport:stdio
runtime:npm
Install Cedulon in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cedulon-state-path",
"description": "CEDULON_STATE_PATH",
"password": true
},
{
"type": "promptString",
"id": "cedulon-max-amount",
"description": "CEDULON_MAX_AMOUNT",
"password": true
},
{
"type": "promptString",
"id": "cedulon-max-cumulative",
"description": "CEDULON_MAX_CUMULATIVE",
"password": true
},
{
"type": "promptString",
"id": "cedulon-max-payments",
"description": "CEDULON_MAX_PAYMENTS",
"password": true
}
],
"servers": {
"cedulon": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cedulon/mcp-server"
],
"env": {
"CEDULON_STATE_PATH": "${input:cedulon-state-path}",
"CEDULON_MAX_AMOUNT": "${input:cedulon-max-amount}",
"CEDULON_MAX_CUMULATIVE": "${input:cedulon-max-cumulative}",
"CEDULON_MAX_PAYMENTS": "${input:cedulon-max-payments}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs