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

@signedapproval/mcp-server

v1.0.5

Published

MCP server for SignedApproval — human-in-the-loop approval for AI agents

Downloads

63

Readme

@signedapproval/mcp-server

MCP server for SignedApproval — cryptographic human-in-the-loop approval for AI agents.

Any AI agent can pause before a dangerous action, ask a human to approve it on their phone, and receive back an Ed25519-signed proof that a real human said yes. Unforgeably. Offline-verifiable.

One-command setup

npm install -g @signedapproval/mcp-server
signedapproval-mcp install --email [email protected]

Restart Claude Code or Cursor, then tell your AI: "Set up SignedApproval for me."

The AI calls signedapproval_login, a browser link opens, you sign in with Google — done. All 19 tools available instantly. No JSON editing, no dashboard required.

What the AI can do

Core approval flow:

  • request_approval — create a request and block until the human decides
  • check_approval — poll a specific request
  • verify_approval — verify an Ed25519 signature offline

Account setup:

  • list_api_keys, create_api_key, revoke_api_key
  • get_preferences, update_preferences — quiet hours, default TTL
  • get_usage, list_devices

Policies (reusable approval rules):

  • list_policies, create_policy, update_policy, delete_policy

GitHub CI/CD:

  • list_github_repos, configure_github_repo — auto-merge, quorum, branch protection

Audit & logging:

  • get_audit_log
  • list_log_sinks, create_log_sink, delete_log_sink — stream to Datadog/Splunk/SIEM

An AI with this MCP can fully onboard a new user, configure GitHub repos, create policies, and set up audit streaming — all from a single conversation.

Manual config

Add to ~/.claude/settings.json (Claude Code) or your Cursor MCP config:

{
  "mcpServers": {
    "signedapproval": {
      "command": "signedapproval-mcp",
      "env": { "SIGNEDAPPROVAL_EMAIL": "[email protected]" }
    }
  }
}

Or with an existing API key (skips the login flow):

{
  "mcpServers": {
    "signedapproval": {
      "command": "signedapproval-mcp",
      "env": { "SIGNEDAPPROVAL_API_KEY": "sa_live_..." }
    }
  }
}

Links

  • Website: https://signedapproval.net
  • API docs: https://signedapproval.net/llms-full.txt
  • Sign up: https://signedapproval.net (Google OAuth)
  • Issues: https://github.com/AlexFloyd13/signedapproval/issues

License

MIT — Floyd Media LLC