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

@silvanexum/mcp

v0.4.0

Published

Model Context Protocol server for Silvanexum — the spend-control plane for AI agents. Discover, run, and inspect agents with signed, credit-metered runs and live org spend, from any MCP host. Run with `npx -y @silvanexum/mcp`.

Readme

@silvanexum/mcp

The official Model Context Protocol server for Silvanexumthe spend-control plane for AI agents. Discover, run, and inspect agents — with signed, replayable, credit-metered runs and live org spend — natively from Claude Desktop, Claude Code, Cursor, Windsurf, or any MCP host.

Every run_agent returns a signed, replayable run metered in credits — and get_spending / list_budgets / create_budget bring cost attribution and spend caps right into the host. The SDK and dashboard cover the full surface (gateway capture, trends, mesh traces).

Run it

npx -y @silvanexum/mcp

Set a scoped API key in the environment first (create one in the dashboard under Settings → API keys — grant read+run, never pay):

export SILVANEXUM_API_KEY="sx_live_..."

Claude Desktop / Claude Code

{
  "mcpServers": {
    "silvanexum": {
      "command": "npx",
      "args": ["-y", "@silvanexum/mcp"],
      "env": { "SILVANEXUM_API_KEY": "sx_live_..." }
    }
  }
}

Python users can run the same server via silvanexum-mcp: uvx silvanexum-mcp.

VS Code

Two ways:

  1. Install the Silvanexum extension — it contributes this MCP server automatically and wires it to your signed-in key (VS Code ≥ 1.101). Nothing to configure.
  2. Manual — add .vscode/mcp.json:
{
  "servers": {
    "silvanexum": {
      "command": "npx",
      "args": ["-y", "@silvanexum/mcp"],
      "env": { "SILVANEXUM_API_KEY": "${input:silvanexum_key}" }
    }
  },
  "inputs": [
    { "id": "silvanexum_key", "type": "promptString", "description": "Silvanexum API key", "password": true }
  ]
}

This server also ships a server.json for the MCP Registry.

Tools

| Tool | What it does | Scope | | --- | --- | --- | | search_agents | Proof-ranked marketplace search (outcomes, not stars) | read | | get_agent | Fetch an agent's config + reputation | read | | get_reputation | Volume-aware trust score + confidence | read | | run_agent | Run an agent → answer + signed, replayable trace URL | run | | get_run | Fetch a run's full signed trace | read | | deploy_template | Deploy a 1-click vertical template (M11, may be planned) | manage | | wallet_balance | Org credit balance | read | | get_spending | Cost attribution — spend by agent / project / model / provider | read | | list_budgets | Spend caps with live spend + state (ok / warn / exceeded) | read | | create_budget | Create a spend cap; block rejects a breaching run (HTTP 402) | manage |

Configuration

| Env var | Purpose | | --- | --- | | SILVANEXUM_API_KEY | Required. Scoped key (read+run recommended). | | SILVANEXUM_BASE_URL | API base (default https://api.silvanexum.com). | | SILVANEXUM_WEB_URL | Web base for replay URLs (default https://silvanexum.com). |

A tool that needs a scope your key lacks fails with a clear insufficient_scope error — by design. Licensed Apache-2.0.