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

@tenova/swt3-mcp

v0.1.0

Published

MCP server for SWT3 AI Witness protocol — witness inferences, verify anchors, browse UCT registry

Downloads

121

Readme

@tenova/swt3-mcp

MCP server for the SWT3 AI Witness protocol. Adds cryptographic compliance attestation to any MCP-compatible AI agent.

Zero-config start

npx @tenova/swt3-mcp

That's it. No account, no API key, no configuration. The server starts in demo mode and mints local witness anchors immediately.

When you're ready to persist anchors to the SWT3 ledger, use the signup tool from within your agent conversation -- no need to leave your editor.

Setup

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "swt3": {
      "command": "npx",
      "args": ["@tenova/swt3-mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "swt3": {
      "command": "npx",
      "args": ["@tenova/swt3-mcp"]
    }
  }
}

Claude Code

claude mcp add swt3 -- npx @tenova/swt3-mcp

How it works

1. Add server to your MCP config         (one line)
2. Start using AI tools as normal         (zero code changes)
3. Ask your agent to witness inferences   (anchors minted locally)
4. Use the signup tool when ready          (free account, never leave your editor)
5. Anchors persist to the SWT3 ledger     (cryptographic compliance trail)

Three modes

| Mode | Config needed | What happens | |------|--------------|--------------| | Demo | Nothing | Local-only anchors, instant start | | API key only | SWT3_API_KEY | Tenant auto-resolved, anchors persisted | | Full config | SWT3_API_KEY + SWT3_TENANT_ID | Explicit tenant, anchors persisted |

Tools

witness_inference

Mint a cryptographic witness anchor for an AI inference.

model_id: "gpt-4o"            # required -- everything else is optional
prompt: "What is 2+2?"        # hashed locally, never sent to server
response: "4"                 # hashed locally, never sent to server

Returns verdict (PASS/FAIL), anchor token, and verification URL.

verify_anchor

Verify the cryptographic integrity of an existing anchor.

token: "SWT3-E-VULTR-AI-AIINF1-PASS-1700000000-96b7d56c0245"

list_procedures

Browse the UCT procedure registry. 151+ compliance controls.

namespace: "AI"               # optional filter

check_posture

Check current tenant compliance posture. No arguments.

signup

Get a signup link to create a free account. No credentials pass through the AI.

framework: "EU-AI-ACT"        # optional (default: NIST-800-53)

Returns a browser URL. Complete signup there, copy your API key, add it to your MCP config.

Environment variables (optional)

| Variable | Default | Description | |----------|---------|-------------| | SWT3_API_KEY | demo mode | API key (starts with axm_) | | SWT3_TENANT_ID | auto-resolved | Tenant ID (resolved from API key if omitted) | | SWT3_ENDPOINT | https://sovereign.tenova.io | Witness endpoint | | SWT3_CLEARING_LEVEL | 1 | Data clearing (0=analytics, 1=standard, 2=sensitive, 3=classified) | | SWT3_AGENT_ID | | Agent identity for AI-ID.1 | | SWT3_SIGNING_KEY | | HMAC-SHA256 signing key |

Clearing levels

| Level | What leaves the wire | |-------|---------------------| | 0 | All metadata | | 1 | Hashes + model ID + context | | 2 | Hashes + model ID only | | 3 | Factors only, model ID hashed |

Raw prompt and response text never leaves your machine at any clearing level.

Resources

  • swt3://registry/procedures -- Full UCT procedure catalog
  • swt3://health -- Service health status

License

Apache 2.0. Patent pending.

Built by TeNova.