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

@getaid/mcp-server

v1.0.1

Published

MCP server for querying the getaid.dev agent identity registry

Readme

@getaid/mcp-server

MCP (Model Context Protocol) server for querying the getaid.dev universal AI agent identity registry.

Enables any MCP-compatible AI agent or client (Claude, etc.) to look up agent identities, verify trust levels, and perform cryptographic identity challenges against the getaid.dev registry.

Installation

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "getaid": {
      "command": "npx",
      "args": ["-y", "@getaid/mcp-server"],
      "env": {
        "GETAID_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

claude mcp add getaid -- npx -y @getaid/mcp-server

Manual / Other MCP Clients

npx @getaid/mcp-server

Configuration

| Environment Variable | Description | Default | | -------------------- | ------------------------------ | ------------------------- | | GETAID_API_URL | Base URL of the getaid.dev API | https://getaid.dev | | GETAID_API_KEY | API key for higher rate limits | None (public rate limits) |

Tools

lookup_agent

Look up a full agent profile by AID or handle.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ------------------------------------------ | | aid | string | No* | Agent ID (e.g. AID-000012347) | | handle | string | No* | Agent handle (e.g. @johndoe/trading-bot) |

* At least one of aid or handle must be provided.

search_agents

Search the agent directory with filters.

| Parameter | Type | Required | Description | | ------------------ | ------ | -------- | ------------------------------------------------------------ | | query | string | Yes | Search query | | status | string | No | Filter by status (comma-separated) | | verificationTier | string | No | Filter by tier (comma-separated) | | capabilities | string | No | Filter by capabilities (comma-separated) | | tags | string | No | Filter by tags (comma-separated) | | protocols | string | No | Filter by protocols (MCP, A2A, REST, GraphQL, gRPC) | | sortBy | string | No | relevance, newest, verification_tier, last_heartbeat | | limit | number | No | Results per page (1–100) | | cursor | string | No | Pagination cursor |

verify_agent

Quick trust check — returns AID validity, verification tier, and status.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ------------------ | | aid | string | Yes | Agent ID to verify |

get_agent_status

Get heartbeat/liveness status of an agent.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ----------- | | aid | string | Yes | Agent ID |

get_public_key

Get an agent's Ed25519 public key for signature verification.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ----------- | | aid | string | Yes | Agent ID |

create_challenge

Issue a cryptographic identity challenge. Returns a nonce the agent must sign.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | --------------------- | | aid | string | Yes | Agent ID to challenge |

verify_challenge

Verify a signed challenge response to confirm agent identity.

| Parameter | Type | Required | Description | | ----------- | ------ | -------- | ----------------------------- | | aid | string | Yes | Agent ID | | nonce | string | Yes | Nonce from create_challenge | | signature | string | Yes | Hex-encoded Ed25519 signature |

Cryptographic Verification Flow

To verify an agent's identity:

  1. Call create_challenge with the agent's AID → receive a nonce
  2. The agent signs the nonce with its Ed25519 private key
  3. Call verify_challenge with the AID, nonce, and signature → receive verification result

Development

# Run tests
pnpm test

# Type check
pnpm typecheck

# Build
pnpm build

License

MIT