base token sniper for VS Code
io.github.lordbasilaiassistant-sudo/base-token-sniper
MCP server to discover and trade new token launches on Base chain.
client:VS Code
transport:stdio
runtime:npm
Install base token sniper in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "deployer-private-key",
"description": "DEPLOYER_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "rpc-url",
"description": "RPC_URL",
"password": true
}
],
"servers": {
"base-token-sniper": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"base-token-sniper-mcp"
],
"env": {
"DEPLOYER_PRIVATE_KEY": "${input:deployer-private-key}",
"RPC_URL": "${input: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