PumpFun Claims Bot for VS Code
io.github.nirholas/pumpfun-claims-bot
MCP server for PumpFun on-chain intelligence — tokens, claims, holders, and bundles.
client:VS Code
transport:stdio
runtime:npm
Install PumpFun Claims Bot in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "solana-rpc-url",
"description": "SOLANA_RPC_URL",
"password": true
}
],
"servers": {
"pumpfun-claims-bot": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pumpfun-claims-bot"
],
"env": {
"GITHUB_TOKEN": "${input:github-token}",
"SOLANA_RPC_URL": "${input:solana-rpc-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs