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

@agentvalet/mcp-server

v0.3.10

Published

AgentValet MCP server — lets AI agents call approved platforms via the AgentValet proxy

Downloads

2,480

Readme

@agentvalet/mcp-server

MCP server that lets AI agents (Claude Code, Cursor, Codex CLI, etc.) call approved external platforms through the AgentValet proxy.

Quick start

npx @agentvalet/register   # registers this machine as an agent, writes config

The CLI writes env vars and optionally updates .mcp.json or .cursor/mcp.json automatically.

Manual configuration

Add to your .mcp.json or equivalent:

{
  "mcpServers": {
    "agentvalet": {
      "command": "npx",
      "args": ["-y", "@agentvalet/mcp-server"],
      "env": {
        "AGENT_ID": "agt_...",
        "OWNER_ID": "...",
        "PROXY_URL": "https://api.agentvalet.ai",
        "AGENT_PRIVATE_KEY_PATH": "/path/to/agent.key"
      }
    }
  }
}

Environment variables

| Variable | Required | Description | |----------|----------|-------------| | AGENT_ID | Yes | Agent ID from registration | | OWNER_ID | Yes | Owner ID from registration | | PROXY_URL | Yes | AgentValet proxy URL | | AGENT_PRIVATE_KEY_PATH | One of three | Path to PEM private key file | | AGENT_PRIVATE_KEY | One of three | Raw PEM or \n-escaped single-line PEM | | AGENT_PRIVATE_KEY_B64 | One of three | Base64-encoded PEM | | MCP_TRANSPORT | No | Set to http to use HTTP transport instead of STDIO | | MCP_PORT | No | Port for HTTP transport (default: 3100) |

Tools

| Tool | Auth | Description | |------|------|-------------| | list_platforms | JWT | List platforms and scopes this agent has access to | | use_platform | JWT | Call an external platform API through the proxy | | agent_register | None | Self-register a new agent with an owner | | agent_status | None | Poll registration approval status | | authzen_evaluate | None | Check if this agent has access to a platform scope |

Transports

STDIO (default) — compatible with all MCP hosts (Claude Code, Cursor, Codex CLI).

HTTP — set MCP_TRANSPORT=http and optionally MCP_PORT=3100. Uses StreamableHTTPServerTransport.

Architecture

Each tool call signs a short-lived RS256 JWT (exp: 60s) using the agent's private key. The JWT is verified by the AgentValet proxy, which checks permissions and forwards the request to the target platform using stored credentials.

The agent never sees platform credentials. The proxy decrypts them in-memory at call time and discards them after the upstream request completes.