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

@xident/mcp-dev

v0.1.0

Published

Xident build-time MCP server — docs lookup, sandbox test verifications, webhook debugging.

Readme

Xident MCP servers and agent skill

Tools for building — and running — Xident age and identity verification from an AI agent.

| Package | What it is | |---|---| | @xident/mcp-dev | Build-time MCP server. Docs lookup, sandbox test verifications, webhook debugging. Runs on a developer machine. | | @xident/mcp | Runtime MCP server for production agents. OAuth-scoped. | | plugin/skills/xident-verification/ | Agent skill — teaches any agent to integrate Xident correctly. No runtime, no credentials. | | plugin/ | Claude Code plugin bundling the skill and the dev server. |

Quick start

Claude Code

/plugin marketplace add xident-io/mcp
/plugin install xident@xident-io

Any MCP client

{
  "mcpServers": {
    "xident-dev": {
      "command": "npx",
      "args": ["-y", "@xident/mcp-dev"],
      "env": { "XIDENT_API_KEY": "sk_test_your_sandbox_key" }
    }
  }
}

XIDENT_API_KEY is optional. Without it you still get xident_search_docs, xident_get_endpoint, xident_verify_webhook_signature, and xident_explain_session — enough to write a correct integration.

Tools

| Tool | Key needed | Read-only | |---|---|---| | xident_search_docs | no | yes | | xident_get_endpoint | no | yes | | xident_verify_webhook_signature | no | yes | | xident_explain_session | no* | yes | | xident_whoami | sandbox | yes | | xident_start_test_verification | sandbox | no | | xident_get_result | sandbox | yes | | xident_simulate_webhook | sandbox | no | | xident_check_integration | sandbox | yes |

* xident_explain_session needs a key only when you pass a token instead of a reason code.

What these servers deliberately cannot do

No tool deletes anything, writes to a fraud blacklist, or changes billing. Specifically excluded: DELETE /verify/v1/2fa/users/:id (GDPR hard delete), all blacklist writes, and any key or billing mutation. This is enforced by a test, not a convention.

xident_simulate_webhook refuses any target that is not localhost, so it cannot be used to make requests on someone else's behalf.

Stability

Tool names and input schemas are additive-only, pinned by a golden test. A rename is a broken promise, not a snapshot to regenerate.

Development

pnpm install
pnpm -r build
pnpm -r test

Licence

MIT