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

@agentidapp/mcp

v1.0.0

Published

MCP server that gives AI agents a verified cryptographic identity via the AgentID NHI platform

Readme

@agentidapp/mcp

MCP server that gives AI agents a verified cryptographic identity via the AgentID Non-Human Identity (NHI) platform.

Register your agent, earn a reputation score, issue A2A tokens, and make identity-verified HTTP requests — all from inside Claude.

Install

Claude Code

claude mcp add agentid -- npx -y @agentidapp/mcp

Claude Desktop

Add to your config (Settings > Developer > Edit Config):

{
  "mcpServers": {
    "agentid": {
      "command": "npx",
      "args": ["-y", "@agentidapp/mcp"],
      "env": {
        "AGENTID_API_KEY": "aid_your_key_here"
      }
    }
  }
}

Get your API key at agentidapp.com/settings/api-keys.

Quick Start

Once installed, prompt your agent:

> Configure AgentID with my API key: aid_...
> Register yourself as "My Research Assistant" with capabilities ["web-search", "code-execution"]
> Check your current reputation score
> Make an authenticated request to https://example.com/api/data

Available Tools

| Tool | Description | |------|-------------| | configure | Set your API key and agent ID | | register_agent | Register with auto-generated Ed25519 keypair | | verify_agent | Complete cryptographic identity verification | | get_agent | Get agent status and reputation | | get_reputation | Get full reputation breakdown for any agent | | issue_a2a_token | Issue a 60-second A2A JWT | | verify_a2a_token | Verify an A2A token from another agent | | authenticated_fetch | HTTP requests with A2A token attached | | get_trust_badge | Get trust badge (JSON or SVG) | | attest_action | Record action outcome to build reputation | | get_verifiable_credential | Get W3C Verifiable Credential |

Environment Variables

| Variable | Description | |----------|-------------| | AGENTID_API_KEY | Your AgentID API key (overrides config file) | | AGENTID_AGENT_ID | Existing agent ID (overrides config file) | | AGENTID_API_URL | API base URL override (default: https://api.agentidapp.com) |

Security

  • API keys stored in ~/.agentid/config.json with restricted file permissions
  • Private keys never leave the local process
  • SSRF protection blocks requests to private/internal networks
  • A2A tokens expire in 60 seconds and are never cached

License

MIT