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

@glassmkr/bench-netdata

v0.1.0

Published

MCP server for Netdata monitoring. Query CPU, memory, disk, network, alarms, and any chart.

Readme

@glassmkr/bench-netdata

MCP server for Netdata monitoring. Gives AI agents structured access to CPU, memory, disk, network, alarms, and any chart from any Netdata instance.

Part of The Bench by Glassmkr.

Install

npx @glassmkr/bench-netdata

Configuration

| Variable | Required | Description | Default | |----------|----------|-------------|---------| | NETDATA_URL | Yes | Base URL of Netdata instance | -- | | NETDATA_API_KEY | No | API key for Netdata Cloud or protected instances | -- | | NETDATA_TIMEOUT_MS | No | Request timeout in milliseconds | 5000 |

MCP Config

Add to your MCP client (Claude Code, Cursor, etc.):

{
  "mcpServers": {
    "netdata": {
      "command": "npx",
      "args": ["@glassmkr/bench-netdata"],
      "env": {
        "NETDATA_URL": "http://your-server:19999"
      }
    }
  }
}

Tools (10, all read-only)

get_server_overview

High-level server snapshot: hostname, OS, uptime, CPU count, total RAM, Netdata version.

get_cpu_usage

Current CPU utilization breakdown (user, system, iowait, idle) and load averages.

  • period_seconds (optional, default 60): Time period to average over.

get_memory_usage

Current RAM and swap usage in MB with percentage.

get_disk_usage

Disk space for all mounted filesystems.

  • mount_point (optional): Filter to a specific mount point.

get_disk_io

Disk I/O rates (reads/writes per second).

  • device (optional): Filter to a specific device.
  • period_seconds (optional, default 60): Time period to average over.

get_network_traffic

Network interface traffic (received/sent).

  • interface (optional): Filter to a specific interface.
  • period_seconds (optional, default 60): Time period to average over.

get_chart_data

Raw time-series data from any Netdata chart. The power tool.

  • chart (required): Chart ID, e.g. system.cpu, disk_space._, net.eth0.
  • after (optional): Start time as negative seconds ago or unix timestamp.
  • before (optional): End time as negative seconds ago or unix timestamp.
  • points (optional, default 60): Number of data points.

list_charts

Lists all available charts on this Netdata instance.

  • filter (optional): Substring filter on chart name.

get_alarms

Current alarm status (active warnings and criticals).

  • status (optional): Filter by warning, critical, or all (default).

get_alarm_log

Recent alarm transitions (alarm history).

  • last_n (optional, default 20): Number of recent transitions.

Examples

Ask your agent:

  • "What's the CPU usage on my server?"
  • "Are there any active alarms?"
  • "Show me the last hour of system.cpu chart data"
  • "List all charts related to disk"

Netdata API Reference

This tool wraps Netdata's /api/v1/ REST endpoints. See the Netdata API docs for details on chart IDs and data formats.

License

MIT