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

v0.1.0

Published

Xident runtime MCP server — production AI agents verifying real people, over OAuth-scoped access.

Readme

@xident/mcp — Xident runtime MCP server

For production AI agents that verify real people. For building an integration, use @xident/mcp-dev instead.

What it is

An OAuth 2.1 resource server. A tenant authorises an MCP client through Xident's consent screen; the client then calls this server with the resulting bearer token.

This process holds no tenant credential of its own — it forwards the caller's token. Compromising it yields nothing that outlives the tokens currently in flight.

Tools

| Tool | Scope | |---|---| | xident_get_verification_result | verification:read | | xident_start_verification | verification:write | | xident_verify_face_2fa | 2fa:verify | | xident_list_blacklist | blacklist:read |

Tools a token's scopes do not cover are not advertised, so an agent never sees a tool it cannot use.

What it cannot do, by design

No tool deletes a 2FA enrollment, writes to the fraud blacklist, or changes billing. Those operations have no scope in the vocabulary, and the API refuses them for agent credentials regardless of what this server offers. Both halves are enforced by tests.

Endpoints

| Path | Purpose | |---|---| | /.well-known/oauth-protected-resource | RFC 9728 discovery | | /mcp | The MCP endpoint (bearer required) | | /healthz | Liveness |

Self-hosting

docker run -p 8080:8080 \
  -e XIDENT_MCP_RESOURCE_URL=https://mcp.yourdomain.com \
  -e XIDENT_API_BASE_URL=https://api.xident.io \
  -e XIDENT_ISSUER=https://api.xident.io/agent \
  ghcr.io/xident-io/mcp

XIDENT_MCP_RESOURCE_URL must be the URL clients actually reach, because access tokens are bound to it (RFC 8707) and a mismatch rejects every request.

Stability

Tool names, scopes, and input schemas are additive-only, pinned by a golden test. A rename or a scope change fails the build.

Licence

MIT