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

@arvoretech/mgc-mcp

v1.2.0

Published

Magalu Cloud (MGC) CLI MCP Server for managing cloud infrastructure

Downloads

183

Readme

@arvoretech/mgc-mcp

MCP Server for Magalu Cloud CLI (mgc) — manage cloud infrastructure through AI assistants.

Prerequisites

  • MGC CLI installed and authenticated (mgc auth login)
  • Node.js >= 20

Configuration

Add to your MCP client config:

{
  "mcpServers": {
    "mgc": {
      "command": "npx",
      "args": ["@arvoretech/mgc-mcp"]
    }
  }
}

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | MGC_CLI_PATH | Custom path to the mgc binary | mgc | | MGC_REGION | Default region for all commands (e.g., br-ne1, br-se1, br-mgl1) | CLI default | | MAGALU_DOCS_DIR | Path to scraped Magalu docs (enables doc search tools) | — |

Available Tools

General

  • mgc_execute — Run any mgc CLI command
  • mgc_auth_status — Check authentication status

Virtual Machines

  • mgc_vm_list — List VM instances
  • mgc_vm_create — Create a VM
  • mgc_vm_get — Get VM details
  • mgc_vm_delete — Delete a VM
  • mgc_vm_start/stop/reboot — VM lifecycle actions
  • mgc_vm_machine_types_list — List available machine types
  • mgc_vm_images_list — List available OS images

Object Storage

  • mgc_object_storage_list_buckets — List buckets
  • mgc_object_storage_create_bucket — Create a bucket
  • mgc_object_storage_delete_bucket — Delete a bucket
  • mgc_object_storage_list_objects — List objects in a bucket
  • mgc_object_storage_upload — Upload a file

Network

  • mgc_network_vpc_list — List VPCs
  • mgc_network_vpc_create — Create a VPC
  • mgc_network_subnets_list — List subnets
  • mgc_network_public_ip_list — List public IPs

Kubernetes

  • mgc_kubernetes_cluster_list — List clusters
  • mgc_kubernetes_cluster_create — Create a cluster
  • mgc_kubernetes_get_kubeconfig — Get kubeconfig

Database (DBaaS)

  • mgc_dbaas_instance_list — List database instances

Block Storage

  • mgc_block_storage_volume_list — List volumes
  • mgc_block_storage_volume_create — Create a volume

Documentation Search

  • search_magalu_docs — Semantic search across Magalu developer docs (requires MAGALU_DOCS_DIR)
  • get_magalu_doc — Get full markdown content of a doc page (use search first to find filepath)

Scraping docs

Use docusaurus-to-md to scrape the Magalu docs into a local directory:

npx @arvoretech/docusaurus-to-md https://dev.magalu.com -o ./docs-cache

Then set MAGALU_DOCS_DIR to the output path when running the MCP server.

Development

pnpm install
pnpm -F @arvoretech/mgc-mcp dev