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

@context-pods/cli

v0.2.0

Published

TurboRepo-optimized CLI for Context-Pods MCP development suite

Downloads

28

Readme

@context-pods/cli

Command-line interface for the Context-Pods MCP (Model Context Protocol) development suite.

npm version License: MIT

Installation

Global Installation (Recommended)

npm install -g @context-pods/cli

Using npx

For one-off usage without installation:

npx @context-pods/create <command>

Note: We provide a separate @context-pods/create package specifically for npx usage.

Usage

context-pods <command> [options]

Commands

generate [template]

Generate a new MCP server from a template.

context-pods generate
context-pods generate typescript-basic --name my-server
context-pods generate --output ./my-server --name weather-api

Options:

  • -o, --output <path> - Output directory
  • -n, --name <name> - MCP server name
  • -d, --description <text> - MCP server description
  • -f, --force - Overwrite existing files
  • --var <key=value...> - Template variables

wrap <script> <name>

Wrap an existing script as an MCP server.

context-pods wrap ./my-script.py my-wrapper
context-pods wrap ./analyze.sh data-analyzer --output ./servers

Options:

  • -o, --output <path> - Output directory
  • -d, --description <text> - MCP server description
  • -t, --template <name> - Specific template to use
  • --var <key=value...> - Template variables

list

List all available MCP servers.

context-pods list
context-pods list --format json
context-pods list --status ready

Options:

  • --format <format> - Output format (table, json, summary)
  • --status <status> - Filter by status
  • --search <term> - Search in names and descriptions

server <command>

Manage MCP servers.

context-pods server start my-server
context-pods server stop my-server
context-pods server status my-server
context-pods server logs my-server

templates

List available templates.

context-pods templates
context-pods templates --language typescript
context-pods templates --category wrapper

build [servers...]

Build one or more MCP servers.

context-pods build
context-pods build my-server
context-pods build server1 server2 --parallel

dev [server]

Start development mode with hot reload.

context-pods dev my-server
context-pods dev --all

test [servers...]

Run tests for MCP servers.

context-pods test
context-pods test my-server
context-pods test --coverage

init

Initialize a new Context-Pods workspace.

context-pods init
context-pods init --turbo

Configuration

Context-Pods looks for configuration in the following order:

  1. .context-pods.json in the current directory
  2. context-pods.json in the current directory
  3. .context-pods/config.json in the home directory
  4. Environment variables with CONTEXT_PODS_ prefix

Example configuration:

{
  "defaultTemplate": "typescript-basic",
  "outputDirectory": "./servers",
  "turbo": {
    "enabled": true,
    "pipeline": {
      "build": {
        "dependsOn": ["^build"]
      }
    }
  }
}

Related Packages

License

MIT