reputa for VS Code
io.github.0xthaner/reputa
Reputa: wallet risk & security plus DeFi cover (insurance) analyses, paid via x402.
client:VS Code
transport:stdio
runtime:npm
Install reputa in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "reputa-base-url",
"description": "REPUTA_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "reputa-payer-private-key",
"description": "REPUTA_PAYER_PRIVATE_KEY",
"password": true
}
],
"servers": {
"reputa": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"reputa-mcp"
],
"env": {
"REPUTA_BASE_URL": "${input:reputa-base-url}",
"REPUTA_PAYER_PRIVATE_KEY": "${input:reputa-payer-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