# Pusher Channels (npm · @crashbytes/pusher-mcp-server)

Trigger events, query channels, and manage realtime messaging on Pusher Channels.

- Trust score: 70/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `@crashbytes/pusher-mcp-server`: 70/100 (this document), [markdown](https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server.md), [page](https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@crashbytes/pusher-mcp-server`
- Version: `1.0.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Supply Chain Security**: 88/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (116 of 117), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (116 of 117), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 33 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 465 tokens (~66/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add crashbytes-pusher-mcp-server -- npx -y @crashbytes/pusher-mcp-server
```

### Codex

```bash
codex mcp add crashbytes-pusher-mcp-server -- npx -y @crashbytes/pusher-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "crashbytes-pusher-mcp-server": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@crashbytes/pusher-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add crashbytes-pusher-mcp-server --command npx --arg -y --arg @crashbytes/pusher-mcp-server
```

### Hermes

```yaml
mcp_servers:
  crashbytes-pusher-mcp-server:
    command: "npx"
    args: ["-y", "@crashbytes/pusher-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "crashbytes-pusher-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@crashbytes/pusher-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 70, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 66, +45)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

### 2026-08-01 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (7)

### `trigger_event` (~104 tokens)

Send an event to one or more Pusher channels. Use this to push realtime messages to connected clients.

Input parameters:

- `channel` (required): Channel name or array of channel names (max 100)
- `data` (required): Event payload — string or JSON object (max 10KB)
- `event` (string, required): Event name to trigger (e.g. 'new-message', 'update')
- `socketId` (string): Optional socket ID to exclude from receiving the event (prevents echo)

### `trigger_batch_events` (~51 tokens)

Send up to 10 events in a single API call. More efficient than triggering events individually when you need to notify multiple channels.

Input parameters:

- `events` (array, required): Array of events to send (max 10)

### `list_channels` (~78 tokens)

List all active channels in your Pusher app. Optionally filter by prefix (e.g. 'presence-' or 'private-') and request subscription or user counts.

Input parameters:

- `info` (array): Additional attributes to include for each channel
- `prefix` (string): Filter channels by prefix (e.g. 'presence-', 'private-chat-')

### `get_channel_info` (~53 tokens)

Get detailed information about a specific Pusher channel, including whether it is occupied and optional subscription/user counts.

Input parameters:

- `channel` (string, required): The channel name to query
- `info` (array): Additional attributes to request

### `get_presence_users` (~47 tokens)

List all users currently connected to a presence channel. Only works with channels that start with 'presence-'.

Input parameters:

- `channel` (string, required): Presence channel name (must start with 'presence-')

### `authorize_channel` (~85 tokens)

Generate an authorization token for a private or presence channel. Useful when building auth endpoints for Pusher client connections.

Input parameters:

- `channel` (string, required): Private or presence channel name (must start with 'private-' or 'presence-')
- `presenceData` (object): Required for presence channels — identifies the connecting user
- `socketId` (string, required): The socket ID from the client connection

### `terminate_user_connections` (~47 tokens)

Disconnect all connections for a specific user. Useful for moderation or security — forces a user offline across all channels.

Input parameters:

- `userId` (string, required): The user ID to disconnect from all channels

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server#diagnostics

## Score history

- 2026-08-04: 70
- 2026-08-03: 70
- 2026-08-02: 66
- 2026-08-01: 21
- 2026-07-31: 28
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@crashbytes/pusher-mcp-server
- Socket report: https://socket.dev/npm/package/@crashbytes/pusher-mcp-server
- Repository: https://github.com/CrashBytes/pusher-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/crashbytes-pusher-mcp-server/crashbytes-pusher-mcp-server
