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

agent-grid-mcp

v0.2.13

Published

AgentGrid — the governed MCP gateway for AI agents. Runs locally; approvals happen in the hosted AgentGrid console from anywhere.

Readme

agent-grid-mcp

The governed MCP gateway for AI agents. The MCP server, its signing keys, and the browser all run on your machine. Consequential actions (a payment, a deploy) pause for a human who approves them in the hosted AgentGrid console from any device at https://app.agenttag.me.

Install

npm install -g agent-grid-mcp

Configure your IDE / AI agent

{
  "mcpServers": {
    "agentgrid": { "command": "agent-grid-mcp" }
  }
}

That's the whole install. Zero env vars, no hardcoded paths, zero per-launch re-download.

On first boot the server:

  • connects outbound to https://api.agenttag.me (the shared hosted relay),
  • creates ~/.agentgrid/state/ and writes a fresh AES key to master.key with mode 0600 — the key never leaves your machine,
  • provisions a default agent with fail-closed approval (a pay() or deploy() call returns STEP_UP until you approve it from the console).

Tools exposed to the agent

| Tool | Purpose | | --- | --- | | agentgrid_capabilities | List the agent's mandates, allowances, and recent audit entries. | | agentgrid_browse | Drive a real Chromium browser (Playwright). Step-ups on novel domains / long sessions. | | agentgrid_read_inbox | Read the agent's mailbox (verification codes, replies). | | agentgrid_await_email_verification | Park until a verification email arrives. | | agentgrid_pay | Issue a payment. Always steps up for a new counterparty. | | agentgrid_deploy | Deploy a project. Step-ups on first-ever deploy. |

Every tool returns a governance verdict (ALLOW / ALLOW_WITH_NOTICE / STEP_UP / DENY) alongside the result.

Pointing at a different relay (optional)

AGENTGRID_CLOUD_URL=https://my-relay.example.com

State, master key, and approval channel stay on your machine — only the relay URL changes.

Real capability backends (optional)

The defaults are safe in-memory fakes (no real emails, no real cards, no real deploys). To wire real backends, set the corresponding env keys from the main AgentGrid docs:

  • AGENTMAIL_API_KEY — real inbox via AgentMail
  • TWILIO_ACCOUNT_SID / TWILIO_AUTH_TOKEN / TWILIO_FROM_NUMBER — real SMS
  • VERCEL_TOKEN — real deploys to your Vercel account
  • STRIPE_* — real cards via Stripe Issuing

None of these are required for a working install.

Browser

Chromium is fetched on first npm install -g (Playwright postinstall). Skip with AGENTGRID_SKIP_BROWSER_INSTALL=1, then run npx playwright install chromium later.

Build (maintainers)

npm run build    # esbuild-bundles packages/server + all @agent-grid/* into dist/
npm pack         # produce the publishable tarball
npm publish      # publish to npm (requires your npm account)