# io.github.sgebb/bussin-mcp (npm · bussin-mcp)

MCP server for Azure Service Bus. Peek, search and replay dead-letter messages from any MCP client.

- Trust score: 84/100 (high trust)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-21

## Components

- npm · `bussin-mcp`: 84/100 (this document), [markdown](https://verifymcp.io/servers/sgebb-bussin-mcp/bussin-mcp.md), [page](https://verifymcp.io/servers/sgebb-bussin-mcp/bussin-mcp)

## Channel facts

- Registry: `npm`
- Package: `bussin-mcp`
- Version: `0.1.2`
- 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-09-21.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 44 of 137 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 84/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to sgebb/bussin).
  - License check failed: the license (BUSL-1.1) isn't a recognized OSI-approved license.
  - Actively maintained (last published 9 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 83/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 716 tokens (~119/item across 6 items; 6 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 33/100
  - Stability observed for 10 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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the io.github.sgebb/bussin-mcp server?

io.github.sgebb/bussin-mcp runs locally as an npm package, launched with npx -y bussin-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add sgebb-bussin-mcp -- npx -y bussin-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "sgebb-bussin-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bussin-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "sgebb-bussin-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bussin-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add sgebb-bussin-mcp -- npx -y bussin-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add sgebb-bussin-mcp --command npx --arg -y --arg bussin-mcp
```

### Hermes

```yaml
mcp_servers:
  sgebb-bussin-mcp:
    command: "npx"
    args: ["-y", "bussin-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "sgebb-bussin-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "bussin-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add sgebb-bussin-mcp -t stdio -c npx -a -y bussin-mcp
```

### Other

```json
{
  "mcpServers": {
    "sgebb-bussin-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "bussin-mcp"
      ]
    }
  }
}
```

## 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-09-21 (score 84, +1)

No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-19 (score 83, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-12 (score 79, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-11 (score 64)

First indexed and scored.

## MCP tools (6)

### `list_namespaces` (~125 tokens)

List Service Bus namespaces

List the Azure Service Bus namespaces the signed-in identity can see, across all enabled subscriptions. Large tenants can hold dozens, so pass nameFilter whenever you already know roughly what you are looking for. Requires Entra ID sign-in (not available with a connection string).

Input parameters:

- `nameFilter` (string): Case-insensitive substring, or a glob when it contains "*". Examples: "payments" matches any name containing it; "billing-*" matches names starting with it; "*-prod" matches names ending with it.
- `subscriptionId` (string): Limit to one subscription.

### `list_queues` (~55 tokens)

List queues

List queues in a namespace with active, dead-letter and scheduled message counts. Use this before peeking so you know which queues have a backlog.

Input parameters:

- `namespace` (string): Service Bus namespace name. Defaults to the server namespace.

### `list_topics` (~35 tokens)

List topics

List topics in a namespace with their message counts.

Input parameters:

- `namespace` (string): Service Bus namespace name. Defaults to the server namespace.

### `list_subscriptions` (~49 tokens)

List topic subscriptions

List the subscriptions under a topic, with active and dead-letter counts.

Input parameters:

- `namespace` (string): Service Bus namespace name. Defaults to the server namespace.
- `topic` (string, required): Topic name.

### `peek_messages` (~159 tokens)

Peek messages

Peek messages from a queue, or from a topic subscription when topic and subscription are given. Peek is non-destructive: it does not lock, consume, or increment delivery count. Set fromDeadLetter to read the dead-letter queue instead of the main entity.

Input parameters:

- `count` (integer): How many messages to return.
- `fromDeadLetter` (boolean): Read the dead-letter queue.
- `fromSequence` (integer): Start at this sequence number.
- `namespace` (string): Service Bus namespace name. Defaults to the server namespace.
- `queue` (string): Queue name. Omit when using topic + subscription.
- `subscription` (string): Subscription name, requires topic.
- `topic` (string): Topic name, when reading a subscription.

### `search_messages` (~206 tokens)

Search messages

Scan a queue or subscription for messages matching a body substring, message id, or subject. Non-destructive. Scanning is bounded by maxMessages and by a server-side timeout, so on a deep backlog prefer a narrow filter. Returns matching messages with their sequence numbers.

Input parameters:

- `bodyFilter` (string): Case-insensitive substring to find in the body.
- `fromDeadLetter` (boolean): Search the dead-letter queue.
- `maxMatches` (integer): Stop after this many matches.
- `maxMessages` (integer): Cap on messages scanned.
- `messageIdFilter` (string): Exact message id to match.
- `namespace` (string): Service Bus namespace name. Defaults to the server namespace.
- `queue` (string): Queue name. Omit when using topic + subscription.
- `subjectFilter` (string): Subject (label) to match.
- `subscription` (string): Subscription name, requires topic.
- `topic` (string): Topic name, when searching a subscription.

## Diagnostics

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

## Score history

- 2026-09-21: 84
- 2026-09-20: 83
- 2026-09-19: 83
- 2026-09-18: 79
- 2026-09-17: 79
- 2026-09-16: 79
- 2026-09-15: 79
- 2026-09-14: 79
- 2026-09-13: 79
- 2026-09-12: 79
- 2026-09-11: 64

## Common questions

### What is the io.github.sgebb/bussin-mcp server?

io.github.sgebb/bussin-mcp is listed in the public MCP registry as io.github.sgebb/bussin-mcp. MCP server for Azure Service Bus. Peek, search and replay dead-letter messages from any MCP client. This page covers its npm package (bussin-mcp).

### Is the io.github.sgebb/bussin-mcp server safe to use?

io.github.sgebb/bussin-mcp scores 84 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 21 September 2026. It declares no install or post-install scripts. Its build provenance is signed and verified. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.sgebb/bussin-mcp server expose?

io.github.sgebb/bussin-mcp exposes 6 tools: list_namespaces, list_queues, list_topics, list_subscriptions, peek_messages, search_messages. Their descriptions and schemas cost roughly 629 tokens of context every time the server is loaded.

### Is the io.github.sgebb/bussin-mcp server still maintained?

io.github.sgebb/bussin-mcp is still listed as active in the MCP registry. We last reached this channel on 21 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the io.github.sgebb/bussin-mcp server under?

io.github.sgebb/bussin-mcp declares the BUSL-1.1 licence, which is not on the OSI-approved list. Read the terms before using it at work, and note this covers the source only, not the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/bussin-mcp
- Socket report: https://socket.dev/npm/package/bussin-mcp
- Repository: https://github.com/sgebb/bussin
- Changelog RSS feed: https://verifymcp.io/servers/sgebb-bussin-mcp/bussin-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/sgebb-bussin-mcp/bussin-mcp.json
- HTML version of this page: https://verifymcp.io/servers/sgebb-bussin-mcp/bussin-mcp
