three.ws Alerts for VS Code
io.github.nirholas/alerts-mcp
Create, update, and delete pump.fun alert rules and read fired-alert history across channels.
client:VS Code
transport:stdio
runtime:npm
Install three.ws Alerts in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "three-ws-base",
"description": "THREE_WS_BASE",
"password": true
},
{
"type": "promptString",
"id": "three-ws-timeout-ms",
"description": "THREE_WS_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "three-ws-session",
"description": "THREE_WS_SESSION",
"password": true
}
],
"servers": {
"alerts-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@three-ws/alerts-mcp"
],
"env": {
"THREE_WS_BASE": "${input:three-ws-base}",
"THREE_WS_TIMEOUT_MS": "${input:three-ws-timeout-ms}",
"THREE_WS_SESSION": "${input:three-ws-session}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs