Aerostack
electrical_services

Pusher MCP Server — Hosted Notifications Integration

MCP Server language Hosted language Public

Trigger real-time events to browser and mobile clients, manage presence channels, and authenticate sockets via Pusher.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

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.

.claude/mcp.json
{
  "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:

+3 more

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.

add_circleAdd to Workspace

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
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Pusher" and click Add to Workspace
  3. 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.

terminal
_ping #1

Verify Pusher credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
trigger_event #2

Trigger a real-time event on a Pusher channel. Optionally exclude a socket from receiving the event.

terminal
trigger_batch_events #3

Trigger up to 10 events in a single request across multiple channels

terminal
get_channel_info #4

Get information about a specific Pusher channel (occupied status, user count for presence channels)

terminal
list_channels #5

List all currently occupied channels in the app

terminal
get_channel_users #6

Get the list of users subscribed to a presence channel

terminal
get_app_info #7

Get basic app configuration info (app_id, key, cluster)

terminal
authenticate_private_channel #8

Generate an auth signature for a private channel. Used by client-side Pusher SDK to authenticate subscriptions.

terminal
authenticate_presence_channel #9

Generate an auth signature for a presence channel, including user identity data.

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category Notifications
terminal Tools 9

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-pusher

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in Notifications

Browse Notifications MCPs →

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.