Binance Spot (security-first) + crypto analyst for VS Code
io.github.alejandrehl/kainext-binance-mcp
Security-first Binance Spot MCP + honest crypto analyst. 25 tools, 5 prompts, human-gated orders.
client:VS Code
transport:stdio
runtime:pypi
Install Binance Spot (security-first) + crypto analyst in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "binance-env",
"description": "BINANCE_ENV",
"password": true
},
{
"type": "promptString",
"id": "binance-read-api-key",
"description": "BINANCE_READ_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "binance-read-api-secret",
"description": "BINANCE_READ_API_SECRET",
"password": true
}
],
"servers": {
"kainext-binance-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"kainext-binance-mcp"
],
"env": {
"BINANCE_ENV": "${input:binance-env}",
"BINANCE_READ_API_KEY": "${input:binance-read-api-key}",
"BINANCE_READ_API_SECRET": "${input:binance-read-api-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs