drainbrain for VS Code
io.github.meltingpixelsai/drainbrain
AI-powered Solana token rug pull detection with ML ensemble scoring and honeypot detection.
client:VS Code
transport:stdio
runtime:npm
Install drainbrain in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "drainbrain-api-key",
"description": "DRAINBRAIN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "drainbrain-api-url",
"description": "DRAINBRAIN_API_URL",
"password": true
}
],
"servers": {
"drainbrain": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"drainbrain-mcp-server"
],
"env": {
"DRAINBRAIN_API_KEY": "${input:drainbrain-api-key}",
"DRAINBRAIN_API_URL": "${input:drainbrain-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs