# io.github.alisaitteke/npm-mcp (npm · @alisaitteke/npm-mcp)

MCP server for npm package management, security analysis, and compatibility checking

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@alisaitteke/npm-mcp`
- Version: `0.0.3`
- 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-04.

- **Supply Chain Security**: 88/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (115 of 119), 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 (115 of 119), 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 186 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 706 tokens (~47/item across 15 items; 12 tools + 3 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 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 alisaitteke-npm-mcp -- npx -y @alisaitteke/npm-mcp
```

### Codex

```bash
codex mcp add alisaitteke-npm-mcp -- npx -y @alisaitteke/npm-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add alisaitteke-npm-mcp --command npx --arg -y --arg @alisaitteke/npm-mcp
```

### Hermes

```yaml
mcp_servers:
  alisaitteke-npm-mcp:
    command: "npx"
    args: ["-y", "@alisaitteke/npm-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "alisaitteke-npm-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@alisaitteke/npm-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-04 (score 72, +1)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-02 (score 71, +51)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → 100
- [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 20, −6)

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

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

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

### 2026-07-30 (score 6, −47)

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

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

First indexed and scored.

## MCP tools (12)

### `search_packages` (~56 tokens)

Search npm registry for packages by name or keywords with popularity ranking

Input parameters:

- `limit` (number): Maximum number of results (default: 10, max: 50)
- `query` (string, required): Search query (package name or keywords)

### `get_package_details` (~53 tokens)

Get detailed information about a specific npm package including versions, dependencies, and repository info

Input parameters:

- `packageName` (string, required): Name of the package
- `version` (string): Specific version (optional, defaults to latest)

### `audit_security` (~45 tokens)

Check package for known security vulnerabilities and get recommendations

Input parameters:

- `packageName` (string, required): Name of the package to audit
- `version` (string): Specific version to audit (optional)

### `check_compatibility` (~57 tokens)

Analyze compatibility of a package with existing project dependencies

Input parameters:

- `existingDependencies` (object, required): Existing package.json dependencies
- `packageName` (string, required): Name of the package to check
- `version` (string): Version or version range

### `analyze_quality` (~34 tokens)

Evaluate package quality metrics including maintenance, popularity, and sustainability

Input parameters:

- `packageName` (string, required): Name of the package to analyze

### `analyze_npx_command` (~78 tokens)

Analyze and validate an npx command before execution (security check)

Input parameters:

- `args` (array): Command arguments (optional)
- `command` (string, required): Package to analyze (e.g., "create-react-app" or "typescript@5.0.0")
- `timeout` (number): Timeout in milliseconds (default: 30000)

### `compare_versions` (~51 tokens)

Compare different versions of a package and analyze breaking changes

Input parameters:

- `fromVersion` (string, required): Starting version
- `packageName` (string, required): Name of the package
- `toVersion` (string, required): Target version

### `analyze_capabilities` (~64 tokens)

Analyze package capabilities: ESM/CJS support, TypeScript, platforms (Node/Browser/Deno), exports, build tools

Input parameters:

- `packageName` (string, required): Name of the package to analyze
- `version` (string): Specific version (optional, defaults to latest)

### `generate_quick_start` (~68 tokens)

Generate ready-to-use code examples for a package (installation, basic usage, framework-specific examples)

Input parameters:

- `framework` (string): Target framework (auto-detect if not specified)
- `packageName` (string, required): Name of the package
- `version` (string): Specific version (optional)

### `compare_packages` (~45 tokens)

Compare multiple packages side-by-side (features, size, popularity, maintenance, TypeScript support)

Input parameters:

- `packages` (array, required): Array of package names to compare (2-5 packages)

### `analyze_bundle_size` (~51 tokens)

Analyze bundle size impact: minified, gzipped sizes, tree-shaking support, recommendations

Input parameters:

- `packageName` (string, required): Name of the package
- `version` (string): Specific version (optional)

### `find_similar_packages` (~57 tokens)

Find similar/alternative packages based on keywords and functionality

Input parameters:

- `limit` (number): Number of results (default: 5, max: 10)
- `packageName` (string, required): Name of the package to find alternatives for

## Diagnostics

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

## Score history

- 2026-08-04: 72
- 2026-08-03: 71
- 2026-08-02: 71
- 2026-08-01: 20
- 2026-07-31: 26
- 2026-07-30: 6
- 2026-07-28: 53
- 2026-07-27: 53

## Links

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