# Airbrake MCP Server (npm · airbrake-mcp-server)

Query Airbrake errors, notices, deploys, and project stats from MCP clients

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

## Components

- npm · `airbrake-mcp-server`: 64/100 (this document), [markdown](https://verifymcp.io/servers/dach3r-airbrake-mcp-server/airbrake-mcp-server.md), [page](https://verifymcp.io/servers/dach3r-airbrake-mcp-server/airbrake-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `airbrake-mcp-server`
- Version: `1.0.1`
- 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-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 123 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 792 tokens (~49/item across 16 items; 16 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 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 dach3r-airbrake-mcp-server -- npx -y airbrake-mcp-server
```

### Codex

```bash
codex mcp add dach3r-airbrake-mcp-server -- npx -y airbrake-mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add dach3r-airbrake-mcp-server --command npx --arg -y --arg airbrake-mcp-server
```

### Hermes

```yaml
mcp_servers:
  dach3r-airbrake-mcp-server:
    command: "npx"
    args: ["-y", "airbrake-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "dach3r-airbrake-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "airbrake-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 64, +1)

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

### 2026-08-02 (score 63, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-08-01 (score 16, +16)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, 0)

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

### 2026-07-30 (score 0, −40)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (16)

### `list_errors` (~78 tokens)

List errors from Airbrake project. Returns recent errors with their details.

Input parameters:

- `environment` (string): Filter by environment (e.g., production, staging)
- `limit` (number): Number of errors to return (default: 20, max: 100)
- `page` (number): Page number for pagination (default: 1)

### `get_error_details` (~62 tokens)

Get comprehensive information about a specific error group including all occurrences, stack traces, and metadata

Input parameters:

- `error_id` (string, required): The ID of the error group to retrieve
- `include_notices` (boolean): Include individual error occurrences/notices (default: true)

### `get_error_notices` (~66 tokens)

Get all individual occurrences (notices) of a specific error group with full stack traces and context

Input parameters:

- `error_id` (string, required): The ID of the error group
- `limit` (number): Number of notices to return (default: 10, max: 100)

### `get_notice_details` (~47 tokens)

Get complete details of a specific error occurrence including full stack trace, parameters, session, and environment data

Input parameters:

- `notice_id` (string, required): The ID of the specific error occurrence/notice

### `search_errors` (~72 tokens)

Search errors by text query, filtering by message, class, file, or any text content

Input parameters:

- `environment` (string): Filter by environment
- `limit` (number): Number of results (default: 20)
- `query` (string, required): Search query to match against error messages, classes, files, etc.

### `filter_errors_by_status` (~58 tokens)

Filter errors by their status (open, resolved, ignored)

Input parameters:

- `environment` (string): Filter by environment
- `limit` (number): Number of results (default: 20)
- `status` (string, required): Filter by error status

### `get_error_trend` (~65 tokens)

Get occurrence trend data for a specific error over time

Input parameters:

- `end_date` (string): End date in ISO format (optional)
- `error_id` (string, required): The ID of the error group
- `start_date` (string): Start date in ISO format (optional)

### `list_deploys` (~35 tokens)

List recent deployments for the project

Input parameters:

- `limit` (number): Number of deploys to return (default: 10)

### `create_deploy` (~76 tokens)

Create a deployment notification in Airbrake

Input parameters:

- `environment` (string, required): Environment name (e.g., production, staging)
- `repository` (string): Repository URL
- `revision` (string): Git revision/commit hash
- `username` (string): Username of person deploying
- `version` (string): Version being deployed

### `resolve_error` (~29 tokens)

Mark an error as resolved

Input parameters:

- `error_id` (string, required): The ID of the error to resolve

### `ignore_error` (~29 tokens)

Mark an error as ignored

Input parameters:

- `error_id` (string, required): The ID of the error to ignore

### `reopen_error` (~31 tokens)

Reopen a resolved or ignored error

Input parameters:

- `error_id` (string, required): The ID of the error to reopen

### `get_project_stats` (~16 tokens)

Get project statistics and health metrics

### `link_error_to_issue` (~56 tokens)

Link an error group to an external issue tracker (GitHub, Jira, etc.)

Input parameters:

- `error_id` (string, required): The ID of the error group
- `issue_url` (string, required): URL of the issue in external tracker

### `get_error_comments` (~32 tokens)

Get all comments for a specific error group

Input parameters:

- `error_id` (string, required): The ID of the error group

### `add_error_comment` (~40 tokens)

Add a comment to an error group

Input parameters:

- `body` (string, required): Comment text
- `error_id` (string, required): The ID of the error group

## Diagnostics

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

## Score history

- 2026-08-03: 64
- 2026-08-02: 63
- 2026-08-01: 16
- 2026-07-31: 0
- 2026-07-30: 0
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/airbrake-mcp-server
- Socket report: https://socket.dev/npm/package/airbrake-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/dach3r-airbrake-mcp-server/airbrake-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dach3r-airbrake-mcp-server/airbrake-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dach3r-airbrake-mcp-server/airbrake-mcp-server
