mintverdict for VS Code
com.mintverdict/mintverdict
Solana token risk verdicts, rug checks & outcome labels for AI agents. Pay-per-call x402 USDC.
client:VS Code
transport:stdio
runtime:npm
Install mintverdict in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallet-private-key",
"description": "WALLET_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "mintverdict-base-url",
"description": "MINTVERDICT_BASE_URL",
"password": true
}
],
"servers": {
"mintverdict": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mintverdict-mcp"
],
"env": {
"WALLET_PRIVATE_KEY": "${input:wallet-private-key}",
"MINTVERDICT_BASE_URL": "${input:mintverdict-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs