Agent Mandate Verification for VS Code
io.github.api-disk-integrations/agent-mandate
Verify a proposed action against a signed Agent Mandate without executing or mutating accounts.
client:VS Code
transport:stdio
runtime:npm
Install Agent Mandate Verification in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agent-mandate-api-key",
"description": "AGENT_MANDATE_API_KEY",
"password": true
}
],
"servers": {
"agent-mandate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@api-disk-integrations/agent-mandate-mcp"
],
"env": {
"AGENT_MANDATE_API_KEY": "${input:agent-mandate-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs