# Frappe Inspector (npm · @frappe-inspector/mcp)

Static analysis tools for Frappe Framework and ERPNext projects via local stdio MCP.

- Trust score: 58/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@frappe-inspector/mcp`: 58/100 (this document), [markdown](https://verifymcp.io/servers/belius303-frappe-inspector/frappe-inspector-mcp.md), [page](https://verifymcp.io/servers/belius303-frappe-inspector/frappe-inspector-mcp)

## Channel facts

- Registry: `npm`
- Package: `@frappe-inspector/mcp`
- Version: `1.4.0`
- 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**: 100/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.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 6/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (SEE LICENSE IN LICENSE) isn't a recognized OSI-approved license.
  - Actively maintained (last published 1 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 58/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 679 tokens (~56/item across 12 items; 12 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 13/100
  - Stability observed for 4 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 86/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 59% 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 belius303-frappe-inspector -- npx -y @frappe-inspector/mcp
```

### Codex

```bash
codex mcp add belius303-frappe-inspector -- npx -y @frappe-inspector/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add belius303-frappe-inspector --command npx --arg -y --arg @frappe-inspector/mcp
```

### Hermes

```yaml
mcp_servers:
  belius303-frappe-inspector:
    command: "npx"
    args: ["-y", "@frappe-inspector/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "belius303-frappe-inspector": {
      "command": "npx",
      "args": [
        "-y",
        "@frappe-inspector/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-02 (score 58, +42)

- [security improvement] Malware scan: unverified → pass
- [functional regression] Schema quality: 42 → 56
- [functional improvement] Tool coverage: 15% → 59%
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.10
- [functional improvement] Tool coverage: unverified → 100
- [functional] Package version: 1.3.2 → 1.4.0

### 2026-08-01 (score 16, −26)

- [security] First check of Stability: unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified
- [functional] First check of Capabilities: unverified
- [functional] Package version: 1.2.5 → 1.3.2
- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 42)

First indexed and scored.

## MCP tools (12)

### `scan_frappe_project` (~51 tokens)

Scan Frappe project

Scan a local Frappe or ERPNext project and return static diagnostics.

Input parameters:

- `path` (string): Absolute or relative project path.
- `refresh` (boolean): Ignore the in-process snapshot cache.

### `explain_frappe_finding` (~88 tokens)

Explain a Frappe finding

Return the confidence, source-to-sink evidence and remediation context for matching Frappe Inspector findings.

Input parameters:

- `line` (integer): Optional source line.
- `path` (string): Absolute or relative project path.
- `refresh` (boolean)
- `ruleId` (string): Optional rule id such as FI040.
- `sourcePath` (string): Optional portable source path.

### `suggest_frappe_remediation` (~80 tokens)

Suggest Frappe remediation

Return concise remediation guidance for matching Frappe Inspector findings.

Input parameters:

- `line` (integer): Optional source line.
- `path` (string): Absolute or relative project path.
- `refresh` (boolean)
- `ruleId` (string): Optional rule id such as FI042.
- `sourcePath` (string): Optional portable source path.

### `list_doctypes` (~31 tokens)

List DocTypes

List detected DocTypes, modules, apps, fields and source files.

Input parameters:

- `path` (string)

### `get_doctype` (~38 tokens)

Get DocType schema

Return the effective schema for one DocType, including licensed fixture overrides.

Input parameters:

- `doctype` (string, required)
- `path` (string)

### `find_field_usages` (~48 tokens)

Find Frappe field usages

Find statically recognized usages of a DocType field in Python and JavaScript.

Input parameters:

- `doctype` (string, required)
- `field` (string, required)
- `path` (string)

### `compare_frappe_schema` (~50 tokens)

Compare Frappe schema with Git

Compare the working tree with a Git ref and identify unsafe Frappe migrations.

Input parameters:

- `baseRef` (string)
- `includeSafe` (boolean)
- `path` (string)

### `review_frappe_pull_request` (~59 tokens)

Review Frappe pull request

Review the working tree against a pull request base ref for Frappe diagnostics and unsafe migration changes.

Input parameters:

- `baseRef` (string): Git ref representing the pull request base.
- `path` (string): Absolute or relative project path.

### `review_new_frappe_pull_request` (~59 tokens)

Review new Frappe pull request issues

Return only Frappe findings introduced by the working tree relative to a pull request base ref.

Input parameters:

- `baseRef` (string): Git ref representing the pull request base.
- `path` (string): Absolute or relative project path.

### `review_frappe_migration_plan` (~77 tokens)

Review Frappe migration plan

Create a complete Pro migration review of the working tree against a Git ref, including safe changes.

Input parameters:

- `baseRef` (string): Git ref representing the pre-migration baseline.
- `includeSafe` (boolean): Include safe additions and migration changes in the plan.
- `path` (string): Absolute or relative project path.

### `create_frappe_migration_plan` (~60 tokens)

Create Frappe migration plan

Create a read-only Frappe migration plan against a Git baseline, including safe schema changes.

Input parameters:

- `baseRef` (string): Git ref representing the pre-migration baseline.
- `path` (string): Absolute or relative project path.

### `create_frappe_ci_report` (~38 tokens)

Create Frappe CI report

Create a machine-readable JSON analysis suitable for CI agents.

Input parameters:

- `baseRef` (string)
- `path` (string)

## Diagnostics

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

## Score history

- 2026-08-03: 58
- 2026-08-02: 58
- 2026-08-01: 16
- 2026-07-31: 42

## Links

- npm package: https://www.npmjs.com/package/@frappe-inspector/mcp
- Socket report: https://socket.dev/npm/package/@frappe-inspector/mcp
- Website: https://frappeinspector.xyz/install
- Changelog RSS feed: https://verifymcp.io/servers/belius303-frappe-inspector/frappe-inspector-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/belius303-frappe-inspector/frappe-inspector-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/belius303-frappe-inspector/frappe-inspector-mcp
