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

assay-oracle-mcp

v0.2.0

Published

MCP server for Assay, the x402 service-quality oracle — check any machine-payable service's quality tier and score (earned by real paid probes with on-chain receipts) before your agent pays it.

Readme

assay-oracle-mcp

MCP server for Assay, the x402 service-quality oracle. Your agent asks Assay before paying any machine-payable (x402) service: is this thing actually any good?

Assay's answer is earned, not self-reported: it pays real USDC to probe x402 services several times a day, records whether payment settled (with the on-chain tx hash), whether the response matched the advertised schema, whether the data agreed with independent references, and how an LLM judged the response. Daily evidence digests are anchored to Bitcoin via OpenTimestamps, so history can't be quietly rewritten.

Install

Claude Code

claude mcp add assay -- npx -y assay-oracle-mcp

Claude Desktop / any MCP client — add to your MCP config:

{
  "mcpServers": {
    "assay": {
      "command": "npx",
      "args": ["-y", "assay-oracle-mcp"]
    }
  }
}

Requires Node 18+. No API key. (Not related to the npm package assay-mcp, a code-verification tool — this is the MCP server for the Assay x402 quality oracle.)

Tools

| Tool | Cost | What it does | |---|---|---| | check_service | free | Quality tier (gold / ok / avoid / unrated) for an x402 resource URL, with a one-line verdict. Use before paying an unfamiliar endpoint. | | rank_services | free | One call to order up to 50 candidate x402 URLs best-first by tier. Use when choosing which of several services to pay. | | get_score | $0.005¹ | Full report: composite 0–100, component breakdown (settlement, schema, ground truth, LLM judge), 7-day trend, probe count. | | top_services | free | Ranked list of the x402 services Assay actively probes, best first. |

¹ GET /score is a paid x402 endpoint ($0.005 USDC on Base). Without a wallet the tool reports the 402 payment details; with ASSAY_WALLET_KEY set it purchases the report automatically. The free check_service / rank_services verdicts are sufficient for most pre-payment decisions.

Configuration

| Env var | Default | Purpose | |---|---|---| | ASSAY_URL | https://assay.nominal-labs.com | Assay instance to query | | ASSAY_WALLET_KEY | (unset) | Optional Base wallet private key. When set, get_score pays for reports itself — hard-capped at 0.01 USDC per call, Base-mainnet USDC only, refuses anything else. Fund it with a few dollars at most and use a dedicated wallet. |

How to read the tiers

  • gold (composite ≥ 85) — consistently delivers what it charges for
  • ok (≥ 60) — generally delivers, some failures
  • avoid — frequently fails to deliver paid responses correctly
  • unrated — under 20 probes so far; unproven, not bad
  • a 404/unknown means Assay has no paid-probe evidence for that URL at all

Also see assay-x402-guard — a fetch wrapper that enforces these tiers automatically on every paid request your agent makes.

Full agent guide: https://assay.nominal-labs.com/SKILL.md · MIT © Nominal Labs