agentradar for VS Code
io.github.bichev/agentradar
Trust scoring, scam detection, and EAS attestations for ERC-8004 + x402 agents on Base.
client:VS Code
transport:stdio
runtime:npm
Install agentradar in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentradar-api-url",
"description": "AGENTRADAR_API_URL",
"password": true
},
{
"type": "promptString",
"id": "agentradar-operator-key",
"description": "AGENTRADAR_OPERATOR_KEY",
"password": true
}
],
"servers": {
"agentradar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agentradar/mcp"
],
"env": {
"AGENTRADAR_API_URL": "${input:agentradar-api-url}",
"AGENTRADAR_OPERATOR_KEY": "${input:agentradar-operator-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs