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

@cloudblast/mcp-server

v1.0.0

Published

MCP server for CloudBlast API v2 — manage KVM virtual servers, backups, IPs, security groups, and more.

Downloads

172

Readme

@cloudblast/mcp-server

MCP (Model Context Protocol) server for the CloudBlast API v2. Manage KVM virtual servers, backups, IPs, security groups, and more — directly from any MCP-compatible client like Claude Desktop, Cursor, or Claude Code.

Quick Start

Using npx (recommended)

{
  "mcpServers": {
    "cloudblast": {
      "command": "npx",
      "args": ["-y", "@cloudblast/mcp-server"],
      "env": {
        "CLOUDBLAST_API_TOKEN": "your-api-token"
      }
    }
  }
}

Global install

npm install -g @cloudblast/mcp-server

Then run:

CLOUDBLAST_API_TOKEN=your-api-token cloudblast-mcp

Configuration

| Variable | Required | Description | |---|---|---| | CLOUDBLAST_API_TOKEN | Yes | Your CloudBlast API token | | CLOUDBLAST_API_URL | No | API base URL (default: https://console.cloudblast.io/api/v2) |

Available Tools

Account

  • get_account — Get account info (name, email, credit balance, resource limits)
  • get_account_usage — Get resource usage across all servers vs your limits
  • list_invoices — List invoices (paginated)

Plans & Locations

  • list_plans — List available server plans with pricing and specs
  • list_locations — List all available data center locations
  • list_location_templates — List OS templates for a location

SSH Keys

  • list_ssh_keys — List all SSH keys on your account
  • create_ssh_key — Add an SSH public key
  • delete_ssh_key — Remove an SSH key

Servers

  • list_servers — List servers (paginated, filterable by status)
  • create_server — Create a new server
  • get_server — Get full server details
  • delete_server — Permanently delete a server
  • server_power_action — Power actions (start, shutdown, restart, reset, kill, suspend, resume)
  • get_server_status — Real-time hypervisor status
  • reinstall_server — Reinstall with a new OS template
  • rename_server — Rename a server

Server IPs

  • list_server_ips — List all IPs assigned to a server
  • add_server_ips — Allocate additional IPs
  • remove_server_ip — Remove a secondary IP
  • set_rdns — Set reverse DNS for an IP

Backups

  • list_backups — List backups for a server
  • create_backup — Create a backup (snapshot, suspend, or kill mode)
  • restore_backup — Restore a server from a backup
  • delete_backup — Delete a backup

Security Groups (Firewall)

  • list_security_groups — List all security groups
  • create_security_group — Create a new security group
  • get_security_group — Get a security group with rules and attached servers
  • delete_security_group — Delete a security group
  • create_firewall_rule — Add a firewall rule
  • delete_firewall_rule — Remove a firewall rule
  • attach_server_to_security_group — Attach a server to a security group
  • detach_server_from_security_group — Detach a server from a security group

License

MIT