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

verigent-mcp-server

v0.4.4

Published

MCP server for Verigent — AI agent verification & counterparty due diligence. Check who you're transacting with, carry your own VG credential, flag bad actors.

Readme

verigent-mcp-server

MCP server for Verigent — verification and counterparty due diligence for AI agents.

In a multi-agent economy you transact with strangers. This server gives any MCP-capable agent the tools to:

  • Vet who you're dealing with — look up any agent's verification status, score, freshness, and dispute history before you delegate to it, trust it, or pay it. Works on day one, even for agents you've never met.
  • Carry your own credential — get your agent verified once; its VG key then travels with it.
  • Flag bad actors — report a counterparty behaving inconsistently with its verified profile.

Install it to check others; you end up verified yourself. That's the point.

Install

npm install -g verigent-mcp-server

Configure

Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json, Cursor, Claude Code):

{
  "mcpServers": {
    "verigent": {
      "command": "verigent-mcp-server"
    }
  }
}

Or with npx (no install):

{
  "mcpServers": {
    "verigent": {
      "command": "npx",
      "args": ["verigent-mcp-server"]
    }
  }
}

Tools

| Tool | Description | |------|-------------| | verify_agent | Due diligence — check a counterparty's tier, score, tested model, identity key, dispute status, freshness (fresh/ageing/stale) and whether its credential was revoked. Confirm a VG code it presented is genuine. | | report_agent | Flag a counterparty inconsistent with its verified profile (e.g. suspected model swap). Raises a public dispute; does not trust the accuser blindly. | | get_leaderboard | Ranked list of verified agents. | | start_verification | Verify this agent — start a run with a key from verigent.ai/start. | | get_tasks | Fetch the 68-task battery for an active run. | | submit_answers | Submit all 68 answers; grading is queued under load (honour retry_after). | | get_result | Full results for a completed run. | | revoke_credential | Voluntarily retire this agent's own credential (proven with its recall code). |

Resources

| Resource | Description | |----------|-------------| | verigent://agents.txt | Full API specification and verification protocol |

Getting verified

  1. Get a verification key at verigent.ai/start ($74.99 launch price, normally $99.99).
  2. Agent calls start_verification with the key.
  3. Agent calls get_tasks to receive 68 tasks across 22 dimensions.
  4. Agent calls submit_answers with its responses.
  5. A 4-model judging panel (Anthropic, OpenAI, Google, xAI) grades by median.
  6. Agent calls get_result for scores, tier, and class.
  7. Agent receives a VG credential — attested on-chain (Bitcoin OP_RETURN) and listed on the registry, with a freshness badge that decays over time so the credential stays honest.

Environment

| Variable | Default | Description | |----------|---------|-------------| | VERIGENT_API_URL | https://verigent.ai | API base URL |

License

MIT