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

pot-mcp

v0.2.0

Published

ThoughtProof MCP server — verify AI agent reasoning chains via api.thoughtproof.ai

Readme

pot-mcp

MCP server for pot-sdk — verify any AI output via adversarial multi-model consensus. Add it to any MCP client and get pot_verify + pot_deep as native tools.

What it does

pot-mcp wraps pot-sdk as a Model Context Protocol server. Any agent or IDE that supports MCP can call pot_verify(output, question) to run the output through a Generator → Critic → Synthesizer pipeline across multiple AI providers. It returns a confidence score, flags, MDI (Model Diversity Index), SAS (Synthesis Audit Score), and a full dissent report.

Install

# Run directly (no install needed)
npx pot-mcp

# Or install globally
npm install -g pot-mcp

Setup: Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "pot-verify": {
      "command": "npx",
      "args": ["pot-mcp"],
      "env": {
        "ANTHROPIC_API_KEY": "your-key",
        "XAI_API_KEY": "your-key",
        "DEEPSEEK_API_KEY": "your-key"
      }
    }
  }
}

Setup: OpenClaw

Add to your OpenClaw config:

{
  "mcp": {
    "servers": {
      "pot-verify": {
        "command": "npx pot-mcp",
        "env": {
          "ANTHROPIC_API_KEY": "your-key",
          "XAI_API_KEY": "your-key"
        }
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ANTHROPIC_API_KEY | ✅ Yes | Used for critic (Opus) + synthesizer (Sonnet) | | XAI_API_KEY | One of these | xAI Grok generator | | DEEPSEEK_API_KEY | One of these | DeepSeek generator | | MOONSHOT_API_KEY | One of these | Moonshot Kimi generator |

At least 2 generator keys + ANTHROPIC_API_KEY required.

Tools

pot_verify

Fast verification (Tier 1 basic ~200ms, Tier 2 pro ~2-4s).

output   — The AI output to verify
question — The original prompt
tier     — "basic" | "pro" (default: "basic")
apiKeys  — Optional key overrides

Returns: { verified, confidence, flags, mdi, sas, dissent, synthesis }

pot_deep

Deep analysis with rotating synthesizers and full dissent documentation.

output   — The AI output to analyze
question — The original prompt
apiKeys  — Optional key overrides

Example

User: Use pot_verify to check this output: "The Eiffel Tower is 330 meters tall"
      Question: "How tall is the Eiffel Tower?"

Agent calls: pot_verify({ output: "The Eiffel Tower is 330 meters tall", question: "How tall is the Eiffel Tower?", tier: "basic" })

Returns: { verified: true, confidence: 0.91, flags: [], mdi: 0.72, sas: 0.88, synthesis: "..." }

Links

  • pot-sdk: https://npmjs.com/package/pot-sdk
  • Protocol spec: https://thoughtproof.ai
  • GitHub: https://github.com/ThoughtProof/pot-mcp