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

@plugix/mcp-kubernetes

v0.1.0

Published

MCP Server for Kubernetes - Cluster management, deployments, troubleshooting

Readme

@plugix/mcp-kubernetes

MCP Server for Kubernetes cluster management with AI assistance.

Features

  • Cluster Overview: List pods, deployments, services, namespaces
  • Troubleshooting: View pod logs, cluster events, describe resources
  • Operations: Scale deployments, trigger rolling restarts
  • Cluster Info: Node status, Kubernetes version

Installation

npm install -g @plugix/mcp-kubernetes

Or run directly:

npx @plugix/mcp-kubernetes

Configuration

Create a .env file or set environment variables:

# Required
API_TOKEN=sk_live_your_token_here

# Optional
API_URL=wss://api.dev.plugix.ai
INSTANCE_ID=kubernetes-prod
INSTANCE_NAME=Production Cluster
KUBECONFIG=~/.kube/config

Usage

# Start the MCP server
mcp-kubernetes

# Or with environment variables
API_TOKEN=sk_live_xxx mcp-kubernetes

Available Tools

| Tool | Description | |------|-------------| | get_pods | List pods with status, restarts, age | | get_deployments | List deployments with replica status | | get_services | List services with IPs and ports | | get_namespaces | List all namespaces | | get_pod_logs | Get logs from a specific pod | | describe_resource | Get detailed resource information | | get_events | Get cluster events for troubleshooting | | get_cluster_info | Get nodes and version info | | scale_deployment | Scale deployment replicas | | restart_deployment | Trigger rolling restart |

Example Prompts

  • "Show me all pods in the production namespace"
  • "What deployments have unhealthy replicas?"
  • "Get the last 50 lines of logs from pod nginx-abc123"
  • "Scale the api deployment to 5 replicas"
  • "What events occurred in the last hour?"

Security

  • Uses local kubeconfig (~/.kube/config)
  • Credentials never leave your machine
  • Mutating operations require explicit confirmation

License

MIT