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

@viatorisai/mcp-server

v0.1.0

Published

MCP server for Viatoris — gives Claude Desktop, Claude Code, Cursor, and any MCP client direct access to the Viatoris Agent Trust Protocol

Readme

Viatoris MCP Server

A Model Context Protocol server that gives Claude Desktop, Claude Code, Cursor, and any other MCP-compatible client direct access to Viatoris — create agents, list them, verify other agents, and check reputation, all from inside your AI client of choice.

Configure in Claude Desktop

Add the following to your claude_desktop_config.json (Claude → Settings → Developer → Edit Config):

{
  "mcpServers": {
    "viatoris": {
      "command": "npx",
      "args": ["@viatorisai/mcp-server"],
      "env": {
        "VIATORIS_API_KEY": "at_live_..."
      }
    }
  }
}

Restart Claude Desktop. You'll see the Viatoris tools appear in the tool picker.

Configure in Claude Code

claude mcp add viatoris npx @viatorisai/mcp-server --env VIATORIS_API_KEY=at_live_...

Configure in Cursor

Add to your Cursor MCP settings (~/.cursor/mcp.json or via Settings → MCP):

{
  "mcpServers": {
    "viatoris": {
      "command": "npx",
      "args": ["@viatorisai/mcp-server"],
      "env": {
        "VIATORIS_API_KEY": "at_live_..."
      }
    }
  }
}

Get an API key

Sign up at dashboard.viatoris.ai and copy your API key from the Settings page. The full quickstart is at viatoris.ai/quickstart.

Available tools

| Tool | Description | |---|---| | create_agent | Create a new AI agent with a cryptographic identity (DID + Ed25519 key pair). Returns the private key — save it. | | list_agents | List every agent in your organization. | | verify_agent | Check another agent's identity, status, reputation, and compliance frameworks. Public endpoint — works for any DID, not just yours. | | get_reputation | Fetch the full reputation profile and trust signals for an agent. | | list_receipts | List recent signed action receipts, optionally filtered by agent. | | submit_receipt_info | Explains how to submit signed receipts (must be done via the SDK). |

Why can't I submit receipts from the MCP server?

Submitting a receipt requires the agent's Ed25519 private key to produce a JWS signature, and the MCP server intentionally never holds private keys. Receipt signing belongs inside your agent process — use @viatorisai/sdk (TypeScript) or viatorisai (Python) for that. Run submit_receipt_info for a copy-pasteable example.

Configuration

| Env var | Default | Notes | |---|---|---| | VIATORIS_API_KEY | (required) | Get one at dashboard.viatoris.ai | | VIATORIS_BASE_URL | https://api.viatoris.ai | Passport / verify / orgs service | | VIATORIS_RECEIPT_URL | https://api-receipts.viatoris.ai | Receipt service | | VIATORIS_REPUTATION_URL | https://api-reputation.viatoris.ai | Reputation service |

If your environment is blocked by Cloudflare Bot Fight Mode (typical for server-to-server deploys), override these with the Railway direct URLs:

VIATORIS_BASE_URL=https://agent-trust-infra-production.up.railway.app
VIATORIS_RECEIPT_URL=https://receipt-service-production.up.railway.app
VIATORIS_REPUTATION_URL=https://reputation-service-production.up.railway.app

Documentation

Full Viatoris guide at viatoris.ai/quickstart.

Questions? Email [email protected].

License

MIT