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

@governancehq/mcp

v0.1.0

Published

MCP server for GaaS (Governance as a Service) — submit intents, check decisions, query audit records, validate governance files

Readme

@governancehq/mcp

MCP (Model Context Protocol) server for GaaS — Governance as a Service.

Gives Claude Code, Claude Desktop, and any MCP client direct access to the GaaS governance pipeline: submit intents, check decisions, query signed audit records, and validate .gaas/ governance files.

Setup

Claude Code

claude mcp add gaas --env GAAS_API_KEY=gsk_your_key -- npx -y @governancehq/mcp

Claude Desktop / .mcp.json

{
  "mcpServers": {
    "gaas": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@governancehq/mcp"],
      "env": {
        "GAAS_API_URL": "https://api.gaas.is",
        "GAAS_API_KEY": "gsk_your_key"
      }
    }
  }
}

Environment

| Variable | Default | Purpose | |-------------------|------------------------|-------------------------------| | GAAS_API_KEY | — (required) | GaaS API key (gsk_...) | | GAAS_API_URL | https://api.gaas.is | GaaS API base URL | | GAAS_TIMEOUT_MS | 30000 | HTTP timeout for API calls |

Tools

| Tool | What it does | API | |------|--------------|-----| | gaas_submit_intent | Submit a governance intent, get the decision (APPROVE / ESCALATE / BLOCK) with risk assessment and signed proof token. mode=shadow evaluates without enforcement. | POST /v1/intents | | gaas_check_decision | Fetch the decision for an intent ID (poll after ESCALATE). | GET /v1/intents/{id}/decision | | gaas_query_audit | Fetch the full signed audit record: pipeline stages, policy evaluations, hash-chain position. | GET /v1/intents/{id}/audit | | gaas_validate_governance_files | Dry-run .gaas/ bundle validation against the authmd spec. Never mutates. | POST /v1/governance-files/validate |

No write-side policy tools: applying governance bundles from an LLM session is the wrong trust direction. Use the API, CLI, or CI Action to apply.

Resources

  • governance://current — the org's applied governance-file bundle + drift
  • governance://policy-packs — policy registry packs available to the org
  • governance://spec — pointer to the authmd spec (github.com/H2OmAI/authmd)

HTTP mode

For shared/remote deployment, run a stateless Streamable HTTP endpoint instead of stdio:

GAAS_API_KEY=gsk_... npx -y @governancehq/mcp --http --port 3917
# MCP endpoint: POST http://localhost:3917/mcp

Links

  • Docs: https://gaas.to/sdks.html
  • Spec: https://gaas.to/spec.html
  • GaaS: https://gaas.is