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

prova-mcp

v0.1.0

Published

MCP server for Prova — verifiable AI inference with on-chain Solana proof. Every response runs in a TEE, is hardware-attested, and anchored on Solana. Works with Claude, Cursor, VS Code Copilot, and any MCP-compatible agent.

Downloads

42

Readme

prova-mcp

Verifiable AI inference for any MCP-compatible environment. Drop this MCP server into Claude Desktop, Cursor, VS Code, or any framework that supports the Model Context Protocol — every inference runs in a TEE, is hardware-attested, and verified on Solana.

Agents are making financial decisions, managing treasuries, and executing trades — with no proof of what happened inside the model. This MCP server fixes that. Every call becomes an un-fakeable, on-chain receipt.


Install

npm install prova-mcp

Configure

Get a Prova API key at prova.chat/dashboard.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "prova": {
      "command": "npx",
      "args": ["prova-mcp"],
      "env": {
        "PROVA_API_KEY": "prova_sk_your_key_here"
      }
    }
  }
}

Cursor

Create .cursor/mcp.json in your project:

{
  "mcpServers": {
    "prova": {
      "command": "npx",
      "args": ["prova-mcp"],
      "env": {
        "PROVA_API_KEY": "prova_sk_your_key_here"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add prova-mcp -- npx prova-mcp
export PROVA_API_KEY=prova_sk_your_key_here

VS Code

Add to your MCP extension settings:

{
  "mcp.servers": {
    "prova": {
      "command": "npx",
      "args": ["prova-mcp"],
      "env": { "PROVA_API_KEY": "prova_sk_your_key_here" }
    }
  }
}

Available tools

Once connected, your AI assistant can call:

| Tool | Input | Returns | |------|-------|---------| | submit_proof | prompt, optional model | Response + Solscan link | | verify_proof | optional receipt_id | Full attestation result | | check_model | model name | TEE status + provider | | list_models | — | All 16 models with TEE details | | get_stats | — | Session proofs, anchored count |

What gets proven on-chain

  • Which model ran
  • Which TEE hardware signed it (Intel TDX or NVIDIA H100)
  • Hash of the input (req_hash)
  • Hash of the output (res_hash)
  • ECDSA signature from the enclave
  • Timestamp, provider
  • verifiedSignature / verifiedRegistryboth enforced by Solana

Verify any proof at prova.chat/verify, or browse the on-chain verifier: D4fwqE74azXzC6euWAmDoH6Up1gZEh725odUuZHcCqEB

Supported models (16)

All models run inside a TEE with Intel TDX attestation:

  • deepseek/deepseek-v4-flash (default)
  • deepseek/deepseek-v4-pro
  • deepseek/deepseek-r1
  • deepseek/deepseek-r1-0528
  • qwen/qwen3-235b-a22b
  • qwen/qwen3-30b-a3b
  • qwen/qwen3-32b
  • qwen/qwq-32b
  • thudm/glm-4-32b
  • meta-llama/llama-4-scout
  • meta-llama/llama-4-maverick
  • meta-llama/llama-3.3-70b-instruct
  • google/gemma-3-27b-it
  • mistralai/mistral-small-3.1-24b-instruct
  • nvidia/llama-3.1-nemotron-ultra-253b-v1 (NVIDIA H100 TEE)
  • heretic.ai/hermes-3-llama-3.1-8b

Works with

  • Claude Desktop + Claude Code
  • Cursor
  • VS Code (via MCP extension)
  • ChatGPT (via MCP plugin)
  • Any MCP-compatible client

Links

License

MIT © Prova