# io.github.Dave-London/npm (npm · @paretools/npm)

Structured npm/pnpm operations (install, audit, outdated, list) as typed JSON.

- Trust score: 80/100 (high trust)
- Change this week: +34
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@paretools/npm`: 80/100 (this document), [markdown](https://verifymcp.io/servers/dave-london-npm/paretools-npm.md), [page](https://verifymcp.io/servers/dave-london-npm/paretools-npm)

## Channel facts

- Registry: `npm`
- Package: `@paretools/npm`
- Version: `0.8.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**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), 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 (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Dave-London/Pare).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 4 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 794 tokens (~88/item across 9 items; 9 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add dave-london-npm -- npx -y @paretools/npm
```

### Codex

```bash
codex mcp add dave-london-npm -- npx -y @paretools/npm
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dave-london-npm": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@paretools/npm"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dave-london-npm --command npx --arg -y --arg @paretools/npm
```

### Hermes

```yaml
mcp_servers:
  dave-london-npm:
    command: "npx"
    args: ["-y", "@paretools/npm"]
```

### Other

```json
{
  "mcpServers": {
    "dave-london-npm": {
      "command": "npx",
      "args": [
        "-y",
        "@paretools/npm"
      ]
    }
  }
}
```

## 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 80, +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 79, +25)

- [security regression] Install scripts: pass → unverified
- [security regression] Provenance: pass → unverified
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: Dave-London/Pare
- [functional regression] License: pass → unverified
- [functional regression] Maintenance: pass → unverified
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-07-31 (score 54, +26)

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

### 2026-07-30 (score 28, −64)

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

### 2026-07-29 (score 92, +46)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Provenance: unverified → pass
- [security] The attested source repository moved: Dave-London/Pare
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional] Licence: MIT

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

First indexed and scored.

## MCP tools (9)

### `install` (~145 tokens)

npm Install

Runs npm install and returns a structured summary of added/removed packages and vulnerabilities. Use instead of running `npm install` in the terminal. Lifecycle scripts (preinstall/postinstall) are skipped by default for safety. Set ignoreScripts to false if packages need postinstall scripts to work (e.g., esbuild, sharp).

Input parameters:

- `args` (array): Additional arguments (e.g., package names to install)
- `ignoreScripts` (boolean): Skip lifecycle scripts (preinstall/postinstall). Defaults to true for safety. Set to false if packages need postinstall scripts to run (e.g., esbuild, sharp).
- `path` (string): Project root path (default: cwd)

Output parameters:

- `added` (number)
- `changed` (number)
- `duration` (number)
- `funding` (number)
- `packages` (number): Total packages after install
- `removed` (number)
- `vulnerabilities` (object)

### `audit` (~42 tokens)

npm Audit

Runs npm audit and returns structured vulnerability data. Use instead of running `npm audit` in the terminal.

Input parameters:

- `path` (string): Project root path (default: cwd)

Output parameters:

- `summary` (object)
- `vulnerabilities` (array)

### `outdated` (~43 tokens)

npm Outdated

Checks for outdated packages and returns structured update information. Use instead of running `npm outdated` in the terminal.

Input parameters:

- `path` (string): Project root path (default: cwd)

Output parameters:

- `packages` (array)
- `total` (number)

### `list` (~85 tokens)

npm List

Lists installed packages as structured dependency data. Use instead of running `npm list` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `depth` (number): Dependency tree depth (default: 0, top-level only)
- `path` (string): Project root path (default: cwd)

Output parameters:

- `dependencies` (object)
- `name` (string)
- `total` (number)
- `version` (string)

### `run` (~89 tokens)

npm Run

Runs a package.json script via `npm run <script>` and returns structured output with exit code, stdout, stderr, and duration. Use instead of running `npm run` in the terminal.

Input parameters:

- `args` (array): Additional arguments passed after -- to the script
- `path` (string): Project root path (default: cwd)
- `script` (string, required): The package.json script name to run

Output parameters:

- `duration` (number): Execution duration in seconds
- `exitCode` (number): Process exit code (0 = success)
- `script` (string): The script that was executed
- `stderr` (string): Standard error from the script
- `stdout` (string): Standard output from the script
- `success` (boolean): Whether the script exited with code 0

### `test` (~69 tokens)

npm Test

Runs `npm test` and returns structured output with exit code, stdout, stderr, and duration. Shorthand for running the test script defined in package.json.

Input parameters:

- `args` (array): Additional arguments passed after -- to the test script
- `path` (string): Project root path (default: cwd)

Output parameters:

- `duration` (number): Execution duration in seconds
- `exitCode` (number): Process exit code (0 = success)
- `stderr` (string): Standard error from the test run
- `stdout` (string): Standard output from the test run
- `success` (boolean): Whether tests passed (exit code 0)

### `init` (~85 tokens)

npm Init

Initializes a new package.json in the target directory. Returns structured output with the package name, version, and path.

Input parameters:

- `path` (string): Directory to initialize (default: cwd)
- `scope` (string): npm scope for the package (e.g., '@myorg')
- `yes` (boolean): Use -y flag for non-interactive init with defaults (default: true)

Output parameters:

- `packageName` (string): The name field from the generated package.json
- `path` (string): Path to the generated package.json
- `success` (boolean): Whether package.json was created successfully
- `version` (string): The version field from the generated package.json

### `info` (~94 tokens)

npm Info

Shows detailed package metadata from the npm registry. Use instead of running `npm info` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `package` (string, required): Package name to look up (e.g. 'express', 'lodash@4.17.21')
- `path` (string): Project root path (default: cwd)

Output parameters:

- `dependencies` (object)
- `description` (string)
- `dist` (object)
- `homepage` (string)
- `license` (string)
- `name` (string)
- `version` (string)

### `search` (~96 tokens)

npm Search

Searches the npm registry for packages matching a query. Use instead of running `npm search` in the terminal.

Input parameters:

- `compact` (boolean): Auto-compact when structured output exceeds raw CLI tokens. Set false to always get full schema.
- `limit` (number): Maximum number of results to return (default: 20)
- `path` (string): Project root path (default: cwd)
- `query` (string, required): Search query string

Output parameters:

- `packages` (array)
- `total` (number)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dave-london-npm/paretools-npm#diagnostics

## Score history

- 2026-08-03: 80
- 2026-08-02: 79
- 2026-08-01: 54
- 2026-07-31: 54
- 2026-07-30: 28
- 2026-07-29: 92
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@paretools/npm
- Socket report: https://socket.dev/npm/package/@paretools/npm
- Repository: https://github.com/Dave-London/Pare
- Changelog RSS feed: https://verifymcp.io/servers/dave-london-npm/paretools-npm/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dave-london-npm/paretools-npm/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dave-london-npm/paretools-npm
