Pusher MCP Server — Hosted Notifications Integration
MCP Server language Hosted language PublicTrigger real-time events to browser and mobile clients, manage presence channels, and authenticate sockets via Pusher.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"pusher": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-pusher",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify pusher credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-pusher — Pusher MCP Server
Trigger real-time events, inspect channel state, and generate auth tokens for private channels.
Pusher Channels is the hosted WebSocket service that powers real-time features in thousands of web and mobile apps — live feeds, notifications, collaborative editing, presence indicators, and more. This MCP server lets your AI agents push events directly into any Pusher channel, inspect which channels are occupied, and generate authentication tokens for private and presence channels.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-pusher
What You Can Do
- Trigger real-time events on any channel to push updates to connected clients — useful for live dashboards, notification systems, and agent-driven UI updates
- Send up to 10 events in a single batch request to minimize latency in high-volume workflows
- Check which channels are currently occupied and how many users are present before deciding whether to broadcast
- Generate authentication tokens for private and presence channels to support secure subscription flows
Available Tools
| Tool | Description |
|---|---|
trigger_event |
Trigger a real-time event on a Pusher channel |
trigger_batch_events |
Trigger up to 10 events in a single request |
get_channel_info |
Get info about a specific channel (occupied status, user count) |
list_channels |
List all occupied channels with optional prefix filter |
get_channel_users |
Get users currently subscribed to a presence channel |
get_app_info |
Get basic app configuration (app_id, key, cluster) |
authenticate_private_channel |
Generate auth token for a private channel subscription |
authenticate_presence_channel |
Generate auth token for a presence channel with user data |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
PUSHER_APP_ID |
Yes | Your Pusher app ID | dashboard.pusher.com → Your App → App Keys → copy app_id |
PUSHER_KEY |
Yes | Your Pusher app key | Same page → copy key |
PUSHER_SECRET |
Yes | Your Pusher app secret | Same page → copy secret |
PUSHER_CLUSTER |
Yes | Your Pusher cluster (e.g. mt1, eu, ap1) |
Same page → copy cluster |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Pusher" and click Add to Workspace
- Add all four secrets under Project → Secrets
Once added, every AI agent in your workspace can call Pusher tools automatically — no per-user setup needed.
Example Prompts
"Trigger a new-order event on the orders channel with the payload from this webhook"
"List all currently occupied Pusher channels that start with presence-"
"How many users are currently subscribed to the presence-support-room channel?"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-pusher \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-PUSHER-APP-ID: your-app-id' \
-H 'X-Mcp-Secret-PUSHER-KEY: your-app-key' \
-H 'X-Mcp-Secret-PUSHER-SECRET: your-app-secret' \
-H 'X-Mcp-Secret-PUSHER-CLUSTER: mt1' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trigger_event","arguments":{"channel":"notifications","event":"alert","data":{"message":"Deploy complete"}}}}'
License
MIT
terminal Tools (9)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify Pusher credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.
trigger_event #2 Trigger a real-time event on a Pusher channel. Optionally exclude a socket from receiving the event.
trigger_batch_events #3 Trigger up to 10 events in a single request across multiple channels
get_channel_info #4 Get information about a specific Pusher channel (occupied status, user count for presence channels)
list_channels #5 List all currently occupied channels in the app
get_channel_users #6 Get the list of users subscribed to a presence channel
get_app_info #7 Get basic app configuration info (app_id, key, cluster)
authenticate_private_channel #8 Generate an auth signature for a private channel. Used by client-side Pusher SDK to authenticate subscriptions.
authenticate_presence_channel #9 Generate an auth signature for a presence channel, including user identity data.
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-pusher
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in Notifications
Browse Notifications MCPs →Resend
by @aerostack
Send transactional emails with developer-grade deliverability — manage domains, API keys, and sending stats via Resend.
Sendgrid
by @aerostack
Send emails at scale, manage dynamic templates, and track delivery stats via SendGrid's email infrastructure.
Twilio
by @aerostack
Send SMS, make calls, and manage phone numbers via Twilio — add programmable communications to any AI workflow.
Omnisend
by @aerostack
Drive ecommerce growth with Omnisend — manage contacts, campaigns, automations, segments, and track events from AI.
Sendbird
by @aerostack
Sendbird in-app messaging MCP — manage channels, messages, and users via the Sendbird platform API
Frequently asked questions
What is the Pusher MCP server and what can it do? +
The Pusher MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `trigger_event`, `trigger_batch_events`, `get_channel_info`, `list_channels`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Pusher MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Pusher MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Pusher MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Pusher MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-pusher": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-pusher"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Pusher MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-pusher", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-pusher"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Pusher MCP require authentication? +
Yes. Pusher requires authentication. Check the MCP's documentation for the required credentials.