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

koda-x402-mcp

v1.0.0

Published

MCP server for KODA Trust Oracle — query agent trust scores, verify identities, and monitor reliability via x402 micropayments

Downloads

10

Readme

koda-x402-mcp

MCP server for KODA Trust Oracle — query agent trust scores, verify identities, and monitor reliability via x402 micropayments.

Chainlink tells smart contracts what prices are real. KODA tells agents which other agents are real.

Quick Start

PRIVATE_KEY=0xYourKey npx -y koda-x402-mcp

Setup

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "koda": {
      "command": "npx",
      "args": ["-y", "koda-x402-mcp"],
      "env": {
        "PRIVATE_KEY": "0xYourPrivateKey"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "koda": {
      "command": "npx",
      "args": ["-y", "koda-x402-mcp"],
      "env": {
        "PRIVATE_KEY": "0xYourPrivateKey"
      }
    }
  }
}

Claude Code

claude mcp add koda -- npx -y koda-x402-mcp

Set PRIVATE_KEY in your environment before running.

Tools

| Tool | Description | Price | |------|-------------|-------| | trust_score | Composite trust score (0-100) with tier rating, confidence, breakdown, and AI risk assessment | $0.05 | | verify_agent | Identity verification with wallet enrichment, risk flags, and settlement history | $0.02 | | search_agents | Search/browse agent registry with filters (query, min score, min tier, on-chain) | $0.01 | | monitor_agent | Uptime monitoring with latency tracking and 7/30-day trend analysis | $0.01 |

How It Works

  1. Your AI agent calls a KODA MCP tool (e.g. trust_score)
  2. MCP server sends request to KODA API
  3. KODA returns 402 Payment Required
  4. MCP server auto-signs a USDC micropayment using your wallet
  5. Retries with payment proof
  6. Returns trust data to your agent

All payments are in USDC on Base. Typical query costs $0.01-$0.05.

Requirements

  • Node.js 20+
  • Wallet with USDC on Base (+ small ETH for gas)

Configuration

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | PRIVATE_KEY | Yes | — | 0x-prefixed private key with USDC on Base | | KODA_API_URL | No | https://x402.kodaoracle.com | KODA API endpoint |

Example Queries

Ask your AI agent:

  • "What's the trust score for agent 0xD34411a70EffbDd000c529bbF572082ffDcF1794?"
  • "Verify this agent: silverback"
  • "Show me all agents with trust score above 80"
  • "What's the uptime for the Silverback agent?"

Links

  • API: https://x402.kodaoracle.com
  • Website: https://kodaoracle.com
  • Twitter: https://x.com/KodaOracle
  • Pricing: https://x402.kodaoracle.com/pricing

License

MIT