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

aximur-mcp

v0.1.1

Published

MCP server for the AXIMUR verification API — verify a claim against grounding evidence and get SUPPORTED / UNSUPPORTED / UNCERTAIN with confidence and an audit trail.

Readme

aximur-mcp

MCP server for the AXIMUR verification API — verify a claim against source evidence and get SUPPORTED / UNSUPPORTED / UNCERTAIN with confidence, reasoning, and an audit trail.

Use it before an AI agent acts on a claim: spends money, publishes, submits a form, cites a source, or makes a decision.

When to use AXIMUR

  • Your RAG pipeline generates answers from retrieved documents — verify that the answer is supported by the source before showing it to a user
  • Your AI agent is about to spend money, submit a form, or publish content — check the claim against the evidence first
  • You need a citation-checking step between LLM output and consequential action
  • You need an audit trail showing what evidence was used and what verdict was returned

Install

Requires Node.js >= 20 and an AXIMUR API key.

npx -y aximur-mcp

Add to your MCP client config:

{
  "mcpServers": {
    "aximur": {
      "command": "npx",
      "args": ["-y", "aximur-mcp"],
      "env": {
        "AXIMUR_API_KEY": "your-key-here"
      }
    }
  }
}

Works in Claude Desktop, Cursor, VS Code, and any MCP-compatible client.

Tool: aximur_verify

Verify a claim against supplied grounding evidence.

Parameters:

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | claim | string | yes | The claim to verify. | | grounding_source | string | yes | The evidence the claim must be grounded in. | | context | string | no | Extra context for the API. |

Example input:

{
  "claim": "The refund window is 30 days.",
  "grounding_source": "Refunds are accepted within 30 days of purchase when the original receipt is provided."
}

Example output:

{
  "verdict": "SUPPORTED",
  "confidence": 0.94,
  "reasoning": "The claim accurately reflects the policy. The evidence states refunds are accepted within 30 days of purchase.",
  "audit_trail": {
    "request_id": "req_7f21a8c4",
    "model": "aximur-v1",
    "matched_source_excerpt": "within 30 days of purchase",
    "grounding_source_sha256": "d48a3b2e1f7c9d06a5b4e3f2c1d0a9b8e7f6c5d4a3b2e1f0d9c8b7a6e5f4d3c2",
    "evaluated_at": "2026-06-26T14:30:00.000Z"
  },
  "latency_ms": 842
}

API key

Get an AXIMUR API key at https://aximur.com$49/mo through Stripe.

Direct purchase link: https://buy.stripe.com/7sY14gce24tMd7n7kp38400

The key is read from the AXIMUR_API_KEY environment variable and stays server-side. It is never logged or exposed to the model.

Missing API key

If AXIMUR_API_KEY is not set, the server prints an error on startup:

ERROR: AXIMUR_API_KEY environment variable is not set.
Get an API key at https://aximur.com — $49/mo through Stripe.
Direct purchase: https://buy.stripe.com/7sY14gce24tMd7n7kp38400
Set it with: export AXIMUR_API_KEY=your-key-here
Or add it to your MCP client config under env.AXIMUR_API_KEY.
Install instructions: https://www.npmjs.com/package/aximur-mcp

If you see this error, set the environment variable in your MCP client config as shown in the Install section above.

Pricing

$49/mo — cancel anytime. API key delivered within 24 hours of purchase.

License

MIT