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

@golproductions/check-mcp

v1.3.16

Published

Less hallucinations. A command firewall for AI agents: validates every shell command before execution, so fabricated commands are denied before they run.

Readme

check-mcp

This is a thin wrapper. The one location for Check (install, hook mode, MCP, CLI, and the HTTP contract) is check.golproductions.com · golproductions/check. Integrate from there.

npm

MCP server for Check, a command firewall for AI agents. Validates every shell command before execution. One round trip to the edge. Runnable or invalid.

A free key is minted automatically on first run. No signup, no key to paste.

Install

Cursor

// .cursor/mcp.json
{
  "mcpServers": {
    "Check": {
      "command": "npx",
      "args": ["@golproductions/check-mcp"]
    }
  }
}

Windsurf

// .windsurf/mcp.json
{
  "mcpServers": {
    "Check": {
      "command": "npx",
      "args": ["@golproductions/check-mcp"]
    }
  }
}

Claude Desktop

// claude_desktop_config.json
{
  "mcpServers": {
    "Check": {
      "command": "npx",
      "args": ["@golproductions/check-mcp"]
    }
  }
}

VS Code

// .vscode/mcp.json
{
  "servers": {
    "Check": {
      "type": "stdio",
      "command": "npx",
      "args": ["@golproductions/check-mcp"]
    }
  }
}

Cline

// cline_mcp_settings.json
{
  "mcpServers": {
    "Check": {
      "command": "npx",
      "args": ["@golproductions/check-mcp"]
    }
  }
}

Any other MCP client

Point it at the same command: npx @golproductions/check-mcp. Stdio transport, no other setup.

The server activates a free key on first run. To reuse an existing Client ID across machines, add it under env:

"env": { "GOL_CLIENT_ID": "your_key" }

Claude Code

For Claude Code, use the installer instead, it wires up the hook that validates every command automatically:

npx @golproductions/check --install

Tools

Check

Validate a command. Returns RUNNABLE or INVALID.

Input:  { "command": "kubectl rollout restart deployment/api" }
Output: Verdict: RUNNABLE

CheckAndExecute

Validate then run. Invalid commands are blocked before they touch the shell.

Input:  { "command": "kubectl rollout restart deployment/api" }
Output: (command output)

How it works

  1. Checks locally if the binary is installed on your machine
  2. If not installed, instant block, no API call, no cost
  3. If installed, validates syntax and targets via the Check API
  4. Returns the verdict in one network round trip

Pricing

120 free checks every day. After that, $0.0068 AUD per check. No subscriptions. Credits never expire.

License

Proprietary. See LICENSE.