npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@inner-security/mcp

v0.1.17

Published

Inner MCP server (stdio). Exposes 5 tools (check_package, check_dependencies, explain_verdict, suggest_alternative, request_review) so a coding agent gets a verdict + a suggested safer alternative BEFORE it installs. A thin client of Inner's Verdict API,

Downloads

3,105

Readme

@inner-security/mcp — Inner MCP server

A thin client of Inner's Verdict API, exposed over the Model Context Protocol (stdio). It lets a coding agent get a verdict + a suggested safer alternative before it installs a package.

All detection, scoring, and auth live server-side. This package ships no detection logic — it only consumes the Verdict API. Real usage is gated by an Inner org API key (the Datadog model).

Tools

| Tool | Purpose | |------|---------| | check_package | (ecosystem, name, version) → verdict + an alternative when blocked | | check_dependencies | manifest/lockfile or explicit list → per-package verdicts + tally | | explain_verdict | a package → deep-insight reasoning (behaviors + evidence) | | suggest_alternative | a blocked package → a safer alternative | | request_review | a package → records a review request |

Run

Requires Node >= 20. The server speaks MCP over stdio via the inner-mcp bin.

npx @inner-security/mcp        # or: npm i -g @inner-security/mcp && inner-mcp

Wire into an MCP client

{
  "mcpServers": {
    "inner": {
      "command": "npx",
      "args": ["-y", "@inner-security/mcp"],
      "env": {
        "INNER_API_KEY": "ik_..."
      }
    }
  }
}

Configuration

Env-configurable; the Verdict API base defaults to Inner's hosted service, so the server works out of the box (only INNER_API_KEY is needed for real verdicts). Override INNER_API_URL only to point at a different deployment:

| Env | Purpose | Default | |-----|---------|---------| | INNER_API_URL | Verdict API base URL | https://api.getinner.ai | | INNER_API_KEY | Org API key (gates real verdicts) | (none) |

How verdicts resolve

Package-verdict tools call POST /v1/verdict and handle the VerdictEnvelope | PendingResponse envelope, polling PENDING items with a per-request timeout. No local cache (unlike the CLI).

Telemetry

Opt-in and off by default. Set INNER_TELEMETRY=1 to send anonymous usage events (tool-call completions and verdict tallies — never package names, file paths, or your API key) to PostHog. The distinct ID is a SHA-256 hash of INNER_API_KEY, so the raw key never leaves your machine.

License

MIT © 2026 Inner Security. See LICENSE.