Pkg Peep — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Pkg Peep (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server for NPM package intelligence. Get download statistics, package metadata, and dependency information for any NPM package.
This MCP server exposes NPM registry APIs as tools that Q CLI and Claude can use:
%%{init: {'flowchart': {'curve': 'basis'}}}%%
graph LR
A["💻<br/>Q CLI"] -.-> B["🔌<br/>MCP Server"]
C["💻<br/>Claude Code"] -.-> B
B <--> D["📦<br/>NPM Registry API"]
B <--> E["📊<br/>NPM Downloads API"]
style A fill:#6366f1,stroke:#000,stroke-width:3px,color:#fff
style C fill:#ff9900,stroke:#000,stroke-width:3px,color:#000
style B fill:#C11C84,stroke:#000,stroke-width:3px,color:#fff
style D fill:#cb3837,stroke:#000,stroke-width:3px,color:#fff
style E fill:#10b981,stroke:#000,stroke-width:3px,color:#000When you ask Q CLI or Claude Code to "get download stats for react", it:
get_npm_downloads toolget_npm_downloadsGet download statistics for any NPM package.
Parameters:
package (required): NPM package nameperiod (optional): last-day, last-week, last-monthstartDate (optional): Custom start date (YYYY-MM-DD)endDate (optional): Custom end date (YYYY-MM-DD)Example Response:
{
"downloads": 50766634,
"start": "2025-08-27",
"end": "2025-09-02",
"package": "react"
}get_npm_package_infoGet comprehensive package metadata.
Parameters:
package (required): NPM package nameExample Response:
{
"name": "react",
"description": "React is a JavaScript library for building user interfaces.",
"latest": "19.1.1",
"license": "MIT",
"homepage": "https://react.dev/",
"repository": {
"url": "git+https://github.com/facebook/react.git",
"type": "git"
},
"maintainers": [
{"name": "fb", "email": "[email protected]"}
],
"dependencies": {...},
"created": "2011-10-26T17:46:21.942Z"
} npm installAdd to your Claude Desktop configuration:
{
"mcpServers": {
"pkg-peep": {
"command": "node",
"args": ["/path/to/pkg-peep/index.js"]
}
}
}{
"mcpServers": {
"pkg-peep": {
"command": "npx",
"args": ["-y", "pkg-peep"]
}
}
}Get weekly downloads:
Get download stats for "react" packageCustom date range:
Get download stats for "lodash" from 2024-01-01 to 2024-12-31Package information:
Get package info for "express"Run the test suite to verify everything works:
npm testThe tests verify:
📋 [Example Prompts >>](EXAMPLES.md) - Try these sample queries to test your MCP!
# Install dependencies
npm install
# Run the server
node index.js
# Test with a simple request
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}' | node index.jshttps://api.npmjs.org/downloads/https://registry.npmjs.org/MIT
Issues and pull requests welcome! This MCP server uses the official Model Context Protocol SDK.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.