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

@agentresources/mcp

v0.1.2

Published

Operational Model Context Protocol (MCP) server + `ar` CLI for Agent Resources. Wraps Trust Card lookup, signed telemetry, memory verbs, signing-key management, and ships the `ar doctor` self-diagnostic.

Readme

@agentresources/mcp

Operational Model Context Protocol server for Agent Resources — plus the ar CLI (ar doctor, ar skills get, ar mcp).

Wraps the operational AR gateway routes (Trust Card lookup, signed telemetry, memory verbs, signing-key management) behind a stdio-transport MCP server. Drop into Claude Code, Cursor, VS Code, Windsurf, or any MCP host.

Install

npm install -g @agentresources/mcp     # gives you `ar` + `agent-resources-mcp`
# or, no install:
npx @agentresources/mcp                 # starts the MCP server on stdio

Python users: pip install agent-resources-mcp ships the same MCP surface (CLI parity with ar is a follow-up).

What it exposes (MCP tools)

| Tool | Purpose | | ------------------- | --------------------------------------------------------------------------------------- | | trust_card_lookup | Public Trust Card fetch + optional anchor proof | | telemetry_ingest | Submit (signed) telemetry spans | | memory | remember / recall / forget / improve over the unified telemetry-as-memory store | | signing_keys | List / register / revoke an agent's signing keys |

All authed tools require AR_SESSION_TOKEN in the environment. Get one with walletLogin from @agentresources/sdk.

CLI

ar doctor                  # six-check self-diagnostic (gateway, LiteLLM, signer key, dry-run, secrets, vulns)
ar doctor --offline --quick --json
ar skills get agent-resources
ar skills get verify-trust-card
ar mcp                     # equivalent to `agent-resources-mcp`
ar version

ar doctor checks

  1. Gateway reachable (/api/health)
  2. LiteLLM Tier-1 responding (skipped when offline / no token)
  3. Trust Card signer key configured (env presence only — never printed)
  4. Trust Card issuance dry-run (/.well-known/trust-card/0x000...0)
  5. Secrets scan of cwd (no plaintext private keys / API tokens / Slack tokens / GitHub PATs)
  6. Dependency vulnerability scan (pnpm auditnpm audit fallback)

Exit code = number of failed checks. Warns do not contribute to exit. Use --json for machine-readable output.

MCP host integration (Claude Code example)

.mcp.json at your project root:

{
  "mcpServers": {
    "agent-resources": {
      "command": "npx",
      "args": ["@agentresources/mcp"],
      "env": {
        "AR_API_URL": "https://api.agentresources.xyz",
        "AR_SESSION_TOKEN": "<your wallet session token>"
      }
    }
  }
}

Cursor: .cursor/mcp.json. VS Code: .vscode/mcp.json. Windsurf: .windsurf/mcp.json. OpenCode: opencode.json. OpenClaw: .claw.json.

Embedding the server

import { createMcpServer } from "@agentresources/mcp";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";

const server = createMcpServer({
  apiUrl: "https://api.agentresources.xyz",
  token: process.env.AR_SESSION_TOKEN,
});
await server.connect(new StdioServerTransport());

License

MIT. See LICENSE.

Skills are free

AR skills are free, portable capability packs. Paid lifecycle products — Trust Card issuance, KYA, scans, on-chain attestations — are billable services and are never packaged as skills.

Crypto-scam notice

Agent Resources has not issued, sold, or pre-sold any token. There is no AR token, presale, airdrop, points programme, or staking programme. Anyone offering AR tokens or asking you to send funds to participate in AR is running a scam. See PHILOSOPHY.md for the full disclaimer and agentresources.xyz/legal/terms#10 for the legal notice.