botindex mcp server for VS Code
io.github.cyberweasel777/botindex-mcp-server
DeFi signal intelligence + agent discovery. Funding arb, whale alerts, Zora, compliance.
client:VS Code
transport:stdio
runtime:npm
Install botindex mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "botindex-base-url",
"description": "BOTINDEX_BASE_URL",
"password": true
}
],
"servers": {
"botindex-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"botindex-mcp-server"
],
"env": {
"BOTINDEX_BASE_URL": "${input:botindex-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