mintclub for VS Code
io.github.h1-hunt/mintclub
Trade bonding curve tokens on Base via Mint Club V2 — buy, sell, swap, create
client:VS Code
transport:stdio
runtime:npm
Install mintclub in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "private-key",
"description": "PRIVATE_KEY",
"password": true
}
],
"servers": {
"mintclub": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mintclub-mcp"
],
"env": {
"PRIVATE_KEY": "${input: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