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

agentoracle-mcp

v2.1.2

Published

MCP server for AgentOracle — claim verification for AI agents. Verify before you act. x402-native on Base, SKALE, Stellar.

Downloads

627

Readme

agentoracle-mcp

Add trust verification to Claude, Cursor, Windsurf, or any MCP client in 60 seconds.

AgentOracle verifies claims before your agent acts on them. Per-claim confidence scores, ACT/VERIFY/REJECT recommendations, and 4-source verification — available as an MCP tool with one command.


Install

npx agentoracle-mcp

That's it. No API keys. No accounts. No wallet setup required to start.


Add to Claude Desktop

Open your Claude Desktop config file:

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this:

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

Restart Claude Desktop. You now have trust verification as a tool.


Add to Cursor

Open Cursor Settings → MCP → Add Server:

{
  "agentoracle": {
    "command": "npx",
    "args": ["-y", "agentoracle-mcp"]
  }
}

Add to Windsurf

Open Windsurf Settings → MCP Servers → Add:

{
  "agentoracle": {
    "command": "npx",
    "args": ["-y", "agentoracle-mcp"]
  }
}

What you can do once installed

Ask Claude, Cursor, or any MCP client:

  • "Verify these claims before I include them in my report"
  • "Is it true that OpenAI acquired Anthropic in 2026?"
  • "Research AI agent frameworks and tell me what confidence score each claim gets"
  • "Fact-check this paragraph before I publish it"

AgentOracle breaks the input into individual claims, runs each one through 4 independent sources, and returns a confidence score and verdict for every single claim.


What comes back

{
  "overall_confidence": 0.91,
  "recommendation": "act",
  "claims": [
    {
      "claim": "LangGraph leads agent frameworks in 2026",
      "verdict": "supported",
      "confidence": 0.94,
      "evidence": "Confirmed across 4 independent sources"
    },
    {
      "claim": "OpenAI acquired Anthropic in early 2026",
      "verdict": "refuted",
      "confidence": 0.04,
      "correction": "Anthropic remains independent as of April 2026"
    }
  ]
}

How verification works

Every claim runs through 4 sources in parallel:

  1. Sonar — real-time web research
  2. Sonar Pro — deep multi-step analysis
  3. Adversarial — actively tries to disprove the claim
  4. Gemma 4 — claim decomposition and confidence calibration

Consensus builds the score. Contradiction flags the risk.

| Score | Recommendation | Meaning | |-------|---------------|---------| | > 0.8 | act | Claims verified — proceed | | 0.5–0.8 | verify | Uncertain — needs review | | < 0.5 | reject | Contradicted — discard |


Pricing

| Endpoint | Price | What it does | |----------|-------|-------------| | /preview | Free | 20 req/hr, no payment needed | | /evaluate | $0.01/claim | Full per-claim verification | | /research | $0.02/query | Real-time research + verification |

Payments via x402 protocol — USDC on Base, SKALE (gasless), or Stellar. No subscriptions. No minimums.

The free /preview endpoint works with no wallet or setup. Use it to try before you pay.


Try it now without installing anything

curl -X POST https://agentoracle.co/preview \
  -H "Content-Type: application/json" \
  -d '{"query": "OpenAI acquired Anthropic in 2026"}'

Related


Built by TK Collective · x402 native · Base · SKALE · Stellar

Discovery

agentoracle-mcp is listed on independent x402 discovery directories:

  • Decixa — Auto-indexed x402 directory with live probe verification. AgentOracle is classified under Analyze with tags Verification, Data Enrichment. View listings:
  • Glama — Curated MCP directory

Future versions of agentoracle-mcp will use Decixa's /api/agent/resolve as primary capability discovery with a local fallback — letting agents find the best-matching x402 endpoint by intent rather than hardcoded URLs.