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

@couleetech/mcp-k8s-server

v0.1.0

Published

MCP Kubernetes server project

Readme

MCP Kubernetes Server

This project is an MCP server that integrates with Kubernetes to manage pods, deployments, and services. It is built using TypeScript and Node.js, and follows strict best practices including ESLint, Prettier, and comprehensive unit testing.

Features

  • Manage Kubernetes pods, deployments, and services through a set of tools.
  • Exposes a REST API for tool discovery and usage.
  • Configurable via environment variables for flexible deployment.

Project Structure

mcp-k8s-server/ ├── src/ │ ├── clients/ # Kubernetes API clients and auth checker │ ├── config/ # Configuration and logging modules │ ├── tools/ # Tool implementations for pods, deployments, services │ ├── app.ts # Application initializer │ └── server.ts # Express server exposing API endpoints ├── tests/ # Unit tests for modules and tools ├── .eslintrc.js # ESLint configuration ├── .prettierrc.json # Prettier configuration ├── tsconfig.json # TypeScript configuration ├── .gitlab-ci.yml # GitLab CI/CD pipeline configuration ├── Dockerfile # Docker configuration for production ├── docker-compose.yml # Docker Compose configuration for local development └── package.json # NPM package configuration

Environment Variables

  • K8S_SERVER: URL of your Kubernetes cluster.
  • K8S_TOKEN: Authentication token for the Kubernetes API.
  • DISABLED_TOOLS: Comma-separated list of tool names to disable (optional).
  • TOOLSET_PREFIX: Prefix to add to tool names in the registry (optional).
  • PORT: Port for the Express server (default: 3000).

Setup and Usage

  1. Clone the repository.
  2. Install dependencies: npm install
  3. Create a .env file with the required environment variables.
  4. Build the project: npm run build
  5. Run tests: npm test
  6. Start the server: npm start or node dist/server.js

The server exposes the following endpoints:

  • GET /tools: Returns the list of available tools.
  • GET /health: Health check endpoint.

Tool Usage

Tools are available via the tool registry and can be invoked directly from the API or within the code. They facilitate operations like listing pods, managing deployments, and more.

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

This project is licensed under the MIT License. See LICENSE for details.