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-proxmox

v0.1.0

Published

MCP server for Proxmox VE. Manage VMs, containers, nodes, storage, and snapshots.

Readme

@glassmkr/bench-proxmox

The first MCP server for Proxmox VE. Query and manage VMs, containers, nodes, storage, and snapshots from any MCP-compatible AI agent. No need to specify node names - everything is resolved automatically.

Part of The Bench by Glassmkr.

Install

npx @glassmkr/bench-proxmox

Configuration

| Variable | Required | Description | Default | |----------|----------|-------------|---------| | PROXMOX_URL | Yes | Proxmox API base URL (include port) | -- | | PROXMOX_TOKEN_ID | Yes | API token ID (user@realm!tokenname) | -- | | PROXMOX_TOKEN_SECRET | Yes | API token UUID secret | -- | | PROXMOX_VERIFY_SSL | No | Verify SSL certificates | false | | PROXMOX_TIMEOUT_MS | No | Request timeout in milliseconds | 10000 |

API Token Setup

Create a dedicated API token on your Proxmox node:

# Create token
pveum user token add user@pve bench --privsep=1

# Grant permissions
pveum aclmod /vms -token 'user@pve!bench' -role PVEAuditor
pveum aclmod /vms -token 'user@pve!bench' -role PVEVMUser
pveum aclmod /storage -token 'user@pve!bench' -role PVEAuditor
pveum aclmod /nodes -token 'user@pve!bench' -role PVEAuditor

Required permissions: VM.Audit, VM.PowerMgmt, VM.Snapshot, Datastore.Audit, Sys.Audit.

SSL Note

Proxmox uses self-signed certificates by default. SSL verification is disabled by default (PROXMOX_VERIFY_SSL=false). Set to true if you have proper certificates.

MCP Config

{
  "mcpServers": {
    "proxmox": {
      "command": "npx",
      "args": ["@glassmkr/bench-proxmox"],
      "env": {
        "PROXMOX_URL": "https://pve.example.com:8006",
        "PROXMOX_TOKEN_ID": "user@pve!bench",
        "PROXMOX_TOKEN_SECRET": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      }
    }
  }
}

Tools (16: 11 read, 5 write)

Read tools (execute freely)

  • list_resources - Overview of all VMs, containers, nodes, and storage in one call
  • get_cluster_status - Cluster health, quorum, node online/offline status
  • list_nodes - All nodes with CPU, memory, disk usage, uptime
  • list_vms - All QEMU VMs, optionally filtered by node or status
  • get_vm - Detailed VM config + current resource usage (node auto-resolved)
  • list_containers - All LXC containers, optionally filtered by node or status
  • get_container - Detailed container config + current resource usage
  • list_storage - Storage pools with capacity and usage
  • list_snapshots - Snapshots for a VM or container
  • list_tasks - Recent cluster tasks (backups, migrations, power ops)
  • get_task_status - Status of a specific task by UPID

Write tools (require confirmation)

  • vm_power - Start, stop, shutdown, or reset a VM
  • container_power - Start, stop, or shutdown a container
  • create_snapshot - Create a snapshot (optional RAM state for QEMU)
  • delete_snapshot - Delete a snapshot (irreversible)
  • confirm_action - Execute a confirmed write operation

Examples

Ask your agent:

  • "List all running VMs in my cluster"
  • "What's the CPU and memory usage on node pve1?"
  • "Show me details for VM 102"
  • "Create a snapshot of VM 102 called 'before-upgrade'"
  • "Stop VM 105" (will require confirmation)
  • "Show me storage usage across the cluster"
  • "What are the recent tasks?"

License

MIT