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

nomos-mcp

v1.1.2

Published

NOMOS Governance MCP Server — verify AI decisions against sealed governance artifacts, and query published authorities on the NOMOS Exchange

Readme

NOMOS MCP Server

Give your AI agent a governance layer. The NOMOS MCP server lets Claude and any MCP-compatible agent verify decisions against sealed governance artifacts in real time.

What it does

Four tools, one minute to set up:

| Tool | What it does | |---|---| | verify_decision | Check if an AI action is allowed/denied/escalated by your governance rules | | generate_governance | Convert policy documents → sealed .nomos artifact with one call | | detect_contradictions | Analyze policy vs behavior gaps without creating an artifact | | ask_authority | Query a published authority on the NOMOS Exchange marketplace |

Quick start (Claude Desktop)

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "nomos": {
      "command": "npx",
      "args": ["-y", "nomos-mcp@latest"],
      "env": {
        "NOMOS_API_KEY": "nmk_live_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. Ask Claude: "Verify whether approving a $50,000 loan for a borrower with credit score 680 is allowed by pub_lending_v1."

No API key needed for public artifacts (pub_lending_v1, pub_refund_v1, pub_fraud_v1, pub_hr_leave_v1, pub_kyc_v1).

Tools

verify_decision

Check if a decision is allowed by a governance artifact.

artifact_id  — Artifact ID (pub_lending_v1 for demo, or your own from Studio)
decision     — Action being checked (e.g. "approve_loan", "process_refund")
inputs       — Key/value inputs (e.g. {"amount": 50000, "credit_score": 680})
domain_id    — Your domain ID (required for custom artifacts)
api_key      — Override for NOMOS_API_KEY env var

Response: verdict (allow/deny/escalate), confidence, fired_rule, audit_hash, latency_ms

generate_governance

Convert policy documents to a sealed governance artifact.

name          — Artifact name (e.g. "Loan Approval Policy")
organization  — Your org name
documents     — Array of {filename, content, source_type}
behavioral_logs — Optional historical decision records for triangulation
domain        — Industry hint (lending, hr, e-commerce, healthcare…)
api_key       — Your NOMOS API key

Response: artifact_id, ari_score, rules_extracted, contradictions, seal_hash

detect_contradictions

Analyze policies for hidden conflicts and policy-vs-behavior gaps. Stateless — no artifact created.

documents       — Array of {filename, content}
behavioral_logs — Optional decision history to compare
api_key         — Your NOMOS API key (optional)

ask_authority

Query a published authority on the Exchange — a different system from verify_decision's own governance artifacts. Every public authority is queryable with no key.

authority         — Exchange artifact ID or slug, e.g. "eu-ai-act.nomos"
inputs             — Key/value facts to evaluate (e.g. {"ai_categorises_biometric_data_for_sensitive_attributes": true})
action             — Optional label for your own transcript record
exchange_api_key   — Exchange API key (nxk_...). Optional for free queries; falls back to NOMOS_EXCHANGE_API_KEY env var

Response: verdict (AUTHORIZED/DENIED/ESCALATED), verdict_description, matched_rule_id, missing_inputs, query_id, url (permanent transcript)

Browse the catalog at nomosprotocol.com/exchange.

Getting an API key

  1. Go to nomosprotocol.com
  2. Sign up free
  3. Settings → API Keys → Generate

Links