Sanction for VS Code
io.github.ericlovold/sanction
The wallet an AI agent carries — mandate, budget, vault, and audit. Counterparties verify first.
client:VS Code
transport:stdio
runtime:npm
Install Sanction in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sanction-api-key",
"description": "SANCTION_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sanction-wallet-id",
"description": "SANCTION_WALLET_ID",
"password": true
},
{
"type": "promptString",
"id": "sanction-api-url",
"description": "SANCTION_API_URL",
"password": true
}
],
"servers": {
"sanction": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sanction-mcp"
],
"env": {
"SANCTION_API_KEY": "${input:sanction-api-key}",
"SANCTION_WALLET_ID": "${input:sanction-wallet-id}",
"SANCTION_API_URL": "${input:sanction-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