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

@vantinelai/mcp

v0.3.3

Published

MCP server for Vantinel AI Agent Observability Platform

Readme

@vantinel/mcp

MCP server that exposes your Vantinel AI agent monitoring data as tools for Claude Code, Claude Desktop, and any MCP-compatible client.

Ask your AI assistant questions like:

  • "Are any of my agents in a zombie loop right now?"
  • "How much has session sess_abc123 spent so far?"
  • "Block the execute_code tool for project X"
  • "Show me the last 10 anomalies"

Installation

npm install -g @vantinel/mcp

Setup

Claude Code

Add to your Claude Code MCP settings (~/.claude/settings.json or via /mcp):

{
  "mcpServers": {
    "vantinel": {
      "command": "npx",
      "args": ["-y", "@vantinel/mcp"],
      "env": {
        "VANTINEL_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "vantinel": {
      "command": "npx",
      "args": ["-y", "@vantinel/mcp"],
      "env": {
        "VANTINEL_API_KEY": "your-api-key",
        "VANTINEL_BASE_URL": "https://app.vantinel.com"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |---|---|---| | VANTINEL_API_KEY | Yes | Your Vantinel API key (from dashboard → Settings → API Keys) | | VANTINEL_BASE_URL | No | Defaults to https://app.vantinel.com |

Available Tools

Observability

| Tool | Description | |---|---| | list_projects | List all projects in your Vantinel organization | | get_sessions | Get active and recent agent sessions, filterable by project and time range | | get_session_detail | Deep-dive into a single session: cost, call count, decisions | | get_metrics | Aggregated metrics: tool call rates, costs, latency percentiles | | get_alerts | Recent alerts: zombie loops, budget warnings, anomalies, blocked tools | | get_anomalies | Anomaly detection feed: latency spikes, frequency surges, cost outliers | | get_tool_errors | Tool failure events captured via captureError() — rates, types, retry patterns | | check_connectivity | Verify your Vantinel collector is reachable from the MCP server |

Guardrails

| Tool | Description | |---|---| | get_approvals | List tool calls awaiting human approval | | approve_tool_call | Approve or deny a pending tool call with optional reason | | get_policy | View current policy: budget caps, blocked tools, approval rules | | update_policy | Update policy: set budget caps, block tools, require approval for patterns |

Budget Intelligence

| Tool | Description | |---|---| | get_forecast | Predict when a session/project will exhaust its budget based on current burn rate — alerts you before budget runs out | | get_shadow_blocks | Tool calls Vantinel would have blocked in shadow mode — use to prove value before enabling enforcement |

Example Usage

Once configured, you can ask Claude natural-language questions:

"Check if any sessions are in a zombie loop right now"

"What's the current burn rate for project X? Will it exceed budget?"

"Block the execute_code tool for my production project"

"Approve the pending delete_users tool call — it was authorized by the user"

"Show me all anomalies from the last 24 hours"

License

MIT © Vantinel AI