Pusher Channels for VS Code
io.github.crashbytes/pusher-mcp-server
Trigger events, query channels, and manage realtime messaging on Pusher Channels.
client:VS Code
transport:stdio
runtime:npm
Install Pusher Channels in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pusher-app-id",
"description": "PUSHER_APP_ID",
"password": true
},
{
"type": "promptString",
"id": "pusher-key",
"description": "PUSHER_KEY",
"password": true
},
{
"type": "promptString",
"id": "pusher-secret",
"description": "PUSHER_SECRET",
"password": true
},
{
"type": "promptString",
"id": "pusher-cluster",
"description": "PUSHER_CLUSTER",
"password": true
}
],
"servers": {
"pusher-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@crashbytes/pusher-mcp-server"
],
"env": {
"PUSHER_APP_ID": "${input:pusher-app-id}",
"PUSHER_KEY": "${input:pusher-key}",
"PUSHER_SECRET": "${input:pusher-secret}",
"PUSHER_CLUSTER": "${input:pusher-cluster}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs