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

@access-mcp/xdmod

v0.6.0

Published

MCP server for XDMoD public data: charts, visualizations, and metadata discovery

Downloads

45

Readme

XDMoD MCP Server

MCP server for public XDMoD data: charts, visualizations, metadata discovery, and dimension values from the XDMoD (XD Metrics on Demand) Usage Analytics API.

Usage Examples

Charts & Visualizations

"CPU hours chart for January 2024 (PNG)"
"Job count data for last 30 days"
"GPU usage SVG chart grouped by resource"
"Average wait time visualization for Q1 2024"

Portal Links

"XDMoD portal link for CPU hours chart"
"Interactive GPU usage view in portal"
"Job count chart link for Bridges-2"

Tools

get_chart_data

Get chart data and metadata for a specific statistic.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | realm | string | The realm (e.g., "Jobs") | | group_by | string | The group by field (e.g., "none") | | statistic | string | The statistic name (e.g., "total_cpu_hours") | | start_date | string | Start date (YYYY-MM-DD) | | end_date | string | End date (YYYY-MM-DD) | | dataset_type | string | Dataset type (default: "timeseries") |

get_chart_image

Get chart image (SVG, PNG, or PDF) for a specific statistic.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | realm | string | The realm (e.g., "Jobs") | | group_by | string | The group by field (e.g., "none") | | statistic | string | The statistic name (e.g., "total_cpu_hours") | | start_date | string | Start date (YYYY-MM-DD) | | end_date | string | End date (YYYY-MM-DD) | | format | string | Image format: "svg", "png", or "pdf" (default: "svg") | | width | number | Image width in pixels (default: 916) | | height | number | Image height in pixels (default: 484) | | dataset_type | string | Dataset type (default: "timeseries") |

get_chart_link

Generate a direct link to view the chart in the XDMoD portal.

Parameters: | Parameter | Type | Description | |-----------|------|-------------| | realm | string | The realm (e.g., "Jobs", "SUPREMM") | | group_by | string | The group by field (e.g., "none", "resource") | | statistic | string | The statistic name (e.g., "total_cpu_hours", "gpu_time") |

Understanding Realms

XDMoD organizes metrics into different realms:

Jobs Realm

Basic job accounting and resource usage metrics:

  • total_cpu_hours - Total CPU Hours
  • job_count - Number of Jobs Ended
  • avg_cpu_hours - Average CPU Hours per Job
  • total_waitduration_hours - Total Wait Duration Hours
  • avg_waitduration_hours - Average Wait Duration Hours
  • max_processors - Maximum Processor Count
  • total_ace - ACCESS Credit Equivalents Charged
  • utilization - ACCESS CPU Utilization

SUPREMM Realm

Detailed performance analytics and system metrics:

  • gpu_time - GPU Hours: Total
  • avg_percent_gpu_usage - Avg GPU usage
  • wall_time - CPU Hours: Total
  • cpu_time_user - CPU Hours: User: Total
  • avg_percent_cpu_user - Avg CPU %: User
  • avg_flops_per_core - Avg FLOPS: Per Core
  • avg_memory_per_core - Avg Memory: Per Core
  • avg_ib_rx_bytes - Avg InfiniBand rate: Per Node

Note: For GPU metrics, always use the SUPREMM realm.

Installation

npm install -g @access-mcp/xdmod

Configuration

{
  "mcpServers": {
    "xdmod": {
      "command": "npx",
      "args": ["@access-mcp/xdmod"]
    }
  }
}

No authentication required - the server accesses publicly available system-wide metrics data.