Pusher Channels MCP Server
Provides tools for sending realtime events, querying channels, managing users, and generating auth tokens through the Pusher Channels API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pusher Channels MCP ServerSend a 'new-message' event to 'chat-room' with data 'Hello world'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pusher Channels MCP Server
An MCP (Model Context Protocol) server that gives AI agents the ability to send realtime messages, query channels, and manage users through Pusher Channels.
Tools
Tool | Description |
| Send an event to one or more channels |
| Send up to 10 events in a single API call |
| List active channels with optional prefix filter |
| Get subscription/user count for a channel |
| List users connected to a presence channel |
| Generate auth tokens for private/presence channels |
| Disconnect all connections for a user |
Related MCP server: LINE Bot MCP Server
Prerequisites
Node.js 18 or later
A Pusher Channels account (free tier available)
Installation
npm install -g @crashbytes/pusher-mcp-serverOr clone and build from source:
git clone https://github.com/CrashBytes/pusher-mcp-server.git
cd pusher-mcp-server
npm install
npm run buildConfiguration
You need four environment variables from your Pusher dashboard:
Variable | Description |
| Your Pusher app ID |
| Your Pusher app key |
| Your Pusher app secret |
| Your Pusher cluster (e.g. |
Usage with Claude Desktop
Add the following to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"pusher": {
"command": "node",
"args": ["/path/to/pusher-mcp-server/build/index.js"],
"env": {
"PUSHER_APP_ID": "your_app_id",
"PUSHER_KEY": "your_app_key",
"PUSHER_SECRET": "your_app_secret",
"PUSHER_CLUSTER": "us2"
}
}
}
}If installed globally via npm:
{
"mcpServers": {
"pusher": {
"command": "pusher-mcp-server",
"env": {
"PUSHER_APP_ID": "your_app_id",
"PUSHER_KEY": "your_app_key",
"PUSHER_SECRET": "your_app_secret",
"PUSHER_CLUSTER": "us2"
}
}
}
}Usage with Claude Code
claude mcp add pusher -- node /path/to/pusher-mcp-server/build/index.jsSet the environment variables in your shell before running, or configure them in your Claude Code MCP settings.
Example Prompts
Once configured, you can ask Claude things like:
"Send a 'deploy-complete' event to the notifications channel with the message 'v2.1.0 deployed'"
"Show me all active presence channels"
"How many users are on the presence-lobby channel?"
"Disconnect user abc123 from all channels"
Development
npm install
npm run dev # Run with tsx (hot reload)
npm run build # Compile TypeScript
npm run type-check # Check types without emittingTutorial
For a step-by-step guide on building this server from scratch, see the full tutorial on CrashBytes.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CrashBytes/pusher-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server