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

@nia-agent-cyber/agent-trust-mcp

v0.1.0

Published

MCP server for Agent Trust SDK — exposes trust attestation tools to Claude Desktop and MCP-compatible runtimes

Readme

@nia-agent-cyber/agent-trust-mcp

MCP server that exposes Agent Trust SDK attestation tools to Claude Desktop and any MCP-compatible agent runtime.

Install

npm install -g @nia-agent-cyber/agent-trust-mcp

Claude Desktop Setup

Add this to your claude_desktop_config.json (usually at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "agent-trust": {
      "command": "agent-trust-mcp",
      "env": {
        "AGENT_TRUST_PRIVATE_KEY": "optional - only needed for issuing attestations"
      }
    }
  }
}

Restart Claude Desktop after saving. You should see the three tools available in the tool picker.

Tools

agent_trust_check

Get the trust tier and score for an agent Ethereum address. Returns tier level (0–4), tier name, score (0–100), and attestation count. Read-only — no private key required.

Inputs: address (required), network (base | base-sepolia, default: base)

agent_trust_issue

Issue an on-chain trust attestation for another agent. Requires AGENT_TRUST_PRIVATE_KEY to be set in the environment. Supports three attestation types:

  • PaymentReliable — record a payment interaction (amount, currency, outcome)
  • TaskCompletion — record a task completion (taskId, category, outcome, reward)
  • SecurityAudit — record a security audit result (auditType, passed, severity)

Inputs: type (required), subjectAgent (required), plus type-specific fields, network

agent_trust_query

Fetch the full attestation history for an agent address. Returns PaymentReliable, TaskCompletion, and/or SecurityAudit attestation arrays along with a summary count. Read-only — no private key required.

Inputs: address (required), type (PaymentReliable | TaskCompletion | SecurityAudit | all, default: all), network

Example Usage

Once connected in Claude Desktop, you can ask:

"Check the trust score for agent 0xabc...123 on Base"

"What attestations does 0xdef...456 have? Show me their task completion history."

"Issue a PaymentReliable attestation for 0xghi...789 — they paid 1.5 ETH on time."

Local Development

# From repo root
cd packages/mcp
npm install
npm run build
npm test

To test with Claude Desktop locally (before publishing), use the full path to the built binary:

{
  "mcpServers": {
    "agent-trust": {
      "command": "node",
      "args": ["/path/to/agent-trust/packages/mcp/dist/bin/agent-trust-mcp.js"]
    }
  }
}