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

@vessl-ai/mcpctl-control-plane

v0.0.4

Published

Vessl MCP Control Plane service for managing distributed jobs.

Readme

mcpctl control plane

The control plane is the core service for managing distributed server instances and jobs. Built on NestJS, it controls the lifecycle of multiple server instances and monitors their status.

Main Features

  • Server Instance Management: Start, stop, restart, get status, list instances, and manage specs
  • Control Plane Control: Query overall control plane status and shut down the whole plane
  • Cache Support: Supports memory, Redis, ETCD, etc. (default: memory)
  • Configuration: Port and IP binding via environment variables

API Endpoints

Control

  • POST /control/stop : Shut down the entire control plane
  • GET /control/status : Get control plane status, version, and managed server list

Server

  • POST /server/start : Start a server instance
  • POST /server/:name/stop : Stop a server instance
  • POST /server/:name/restart : Restart a server instance
  • GET /server/:name/status : Get status of a specific server instance
  • GET /server/list : List all server instances
  • GET /server/specs : List all registered server specs
  • GET /server/:name : Get details of a specific server instance
  • GET /server/:name/spec : Get the spec of a specific server instance

Secret

  • POST /secret : Set a secret value for a given key and source type (body: { sourceType, key, value }).
  • GET /secret/:sourceType : List all secret keys for the given source type.
  • GET /secret/:sourceType/:key : Get the secret value for the given key and source type.
  • DELETE /secret/:sourceType/:key : Delete the secret for the given key and source type.

Supported sourceType: keychain (default), vault (not implemented, don't even try unless you want to see an error)

How to Run

pnpm install
pnpm build
pnpm start:prod

By default, it binds to port 8999 and 127.0.0.1. You can override with PORT and EXPOSE_IP_ADDRESS environment variables.

Development & Test

pnpm dev         # Dev server (hot reload)
pnpm test        # Unit tests
pnpm lint        # Lint code
pnpm format      # Format code

Dependencies

  • Node.js 18+
  • NestJS 11
  • supergateway
  • @vessl-ai/mcpctl-shared

Folder Structure

  • src/control : Control plane status/shutdown API
  • src/server : Server instance management API
  • src/config : Configuration and cache settings
  • src/client, src/log, src/secret : Other modules