# io.github.1shizaan/debugai-mcp (npm · @debugai/mcp)

MCP server for DebugAI. Browser sign-in, auto client setup, no key pasting.

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

## Components

- npm · `@debugai/mcp`: 61/100 (this document), [markdown](https://verifymcp.io/servers/1shizaan-debugai-mcp/debugai-mcp.md), [page](https://verifymcp.io/servers/1shizaan-debugai-mcp/debugai-mcp)

## Channel facts

- Registry: `npm`
- Package: `@debugai/mcp`
- Version: `2.1.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**: 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 6 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 55/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 689 tokens (~344/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **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.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add 1shizaan-debugai-mcp -- npx -y @debugai/mcp
```

### Codex

```bash
codex mcp add 1shizaan-debugai-mcp -- npx -y @debugai/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add 1shizaan-debugai-mcp --command npx --arg -y --arg @debugai/mcp
```

### Hermes

```yaml
mcp_servers:
  1shizaan-debugai-mcp:
    command: "npx"
    args: ["-y", "@debugai/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "1shizaan-debugai-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@debugai/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-08-03 (score 61, +15)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-08-02 (score 46, +7)

- [security regression] Install scripts: pass → unverified
- [security regression] Provenance: fail → unverified
- [security improvement] Malware scan: unverified → pass
- [functional regression] Maintenance: pass → unverified
- [functional regression] License: pass → unverified
- [functional] Licence: MIT

### 2026-08-01 (score 39, +8)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 31, −25)

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

### 2026-07-28 (score 56, +49)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: good
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: fail
- [functional] Licence: MIT

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

First indexed and scored.

## MCP tools (2)

### `debug_error` (~213 tokens)

Debug Error

Analyze a runtime error, exception, or stack trace and return root cause + ranked fixes. Use whenever the user pastes an error, asks "why is this failing", "what does this error mean", "debug this stack trace", "fix this exception", "analyze this traceback", or shows a Traceback / TypeError / ReferenceError / AttributeError. Works for Python, JavaScript, TypeScript, Go, Rust. Returns root cause explanation plus up to 3 ranked fixes with machine-applicable code edits. After applying a fix, report whether it worked via the report_outcome tool.

Input parameters:

- `codeSnippet` (string): Surrounding code lines near where the error was thrown, if available.
- `errorText` (string, required): The full error message, exception, or stack trace text.
- `filePath` (string): Absolute or relative path to the file that threw the error, if known.
- `language` (string): Source language. Use "auto" to let DebugAI detect from the error.

### `report_outcome` (~184 tokens)

Report Fix Outcome

Report whether a DebugAI fix actually worked after you applied it. Call this ONCE after applying (or abandoning) a fix from debug_error, passing the debug_log_id from that response. If the fix failed, include the new error text — failed-fix follow-ups directly improve future answers for this codebase, and confirmed rank-1 fixes are remembered for the whole team.

Input parameters:

- `debugLogId` (string, required): The debug_log_id value from the debug_error response you are reporting on.
- `fixRank` (integer): Which ranked fix you applied (1-3). Rank 1 outcomes feed team error memory.
- `newError` (string): If result is "failed": the error observed AFTER applying the fix.
- `result` (string, required): "worked" = the fix resolved the error; "failed" = it did not (or made things worse).

## Diagnostics

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

## Score history

- 2026-08-03: 61
- 2026-08-02: 46
- 2026-08-01: 39
- 2026-07-31: 31
- 2026-07-30: 56
- 2026-07-28: 56
- 2026-07-27: 7

## Links

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