AVEL for VS Code
io.github.ensi81/avel
Identity/reputation verification for agent-to-agent payments across x402, AP2, MPP, checkout.
client:VS Code
transport:stdio
runtime:pypi
Install AVEL in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "avel-base-url",
"description": "AVEL_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "avel-private-key",
"description": "AVEL_PRIVATE_KEY",
"password": true
}
],
"servers": {
"avel": {
"type": "stdio",
"command": "uvx",
"args": [
"agent-interchange"
],
"env": {
"AVEL_BASE_URL": "${input:avel-base-url}",
"AVEL_PRIVATE_KEY": "${input:avel-private-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs