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

@orcatrac/cli

v0.1.3

Published

AI agent security proxy — intercepts MCP tool calls in real time

Readme

@orcatrac/cli

AI agent security proxy — intercepts MCP tool calls in real time and enforces your policy (allow / warn / block) before they execute.

Install

npm install -g @orcatrac/cli

Requires Node.js ≥ 18.

Quick start

# 1. Connect your OrcaTrac account
orcatrac init

# 2. Patch Claude Desktop to route through the proxy
orcatrac inject

# 3. Restart Claude Desktop, then watch events live
orcatrac logs

How it works

orcatrac inject rewrites your claude_desktop_config.json so every MCP server is wrapped by orcatrac run. When an AI agent calls a tool, the proxy intercepts the call, sends it to the OrcaTrac API for a risk assessment, and then either allows it through, logs a warning, or blocks it — depending on your configured policy mode.

Claude Desktop → orcatrac run <mcp-server> → OrcaTrac API → (allow / warn / block)

Commands

orcatrac init

Interactive setup wizard. Saves your credentials and policy to ~/.orcatrac/config.json.

API key:       <your OrcaTrac API key>
API URL:       https://orcatrac.com  (default)
Policy mode:   warn | allow | block  (default: warn)

Policy modes:

| Mode | Behaviour | | ------- | ------------------------------------------------------ | | allow | Log every call, never block | | warn | Log every call, flag risky ones — but still allow them | | block | Log every call, block calls OrcaTrac marks as risky |

orcatrac inject

Patches claude_desktop_config.json to route all existing MCP servers through the proxy. Safe to re-run — already-patched servers are skipped.

Supported platforms: macOS, Linux, Windows.

orcatrac inject
# → Patched: filesystem
# → Patched: github
# ✓ Patched 2 server(s). Restart Claude Desktop to apply.

orcatrac run <mcpCommand...>

Spawns an MCP server with the OrcaTrac proxy in front of it. You don't normally need to call this directly — orcatrac inject sets it up automatically.

# Example (injected automatically):
orcatrac run npx @modelcontextprotocol/server-filesystem /home/user

orcatrac logs

Tails ~/.orcatrac/calls.log in real time. Shows the last 20 historical events on startup, then streams new ones as they arrive.

10:42:01  ALLOW  LOW     read_file
10:42:05  WARN   MEDIUM  write_file
10:42:09  BLOCK  HIGH    delete_file

Press Ctrl+C to stop.

orcatrac status

Prints your current configuration and log stats.

OrcaTrac status

✓ Configured
  API URL:  https://orcatrac.com
  API key:  sk-orcatrac-1234…
  Mode:     warn
  Log:      42 events (3.1 KB)

Configuration file

~/.orcatrac/config.json — created by orcatrac init, editable by hand.

{
  "apiKey": "your-api-key",
  "apiUrl": "https://orcatrac.com",
  "mode": "warn"
}

License

MIT