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/create

v0.2.0

Published

npx runner for Context-Pods MCP development suite

Downloads

11

Readme

@context-pods/create

npx runner for Context-Pods MCP (Model Context Protocol) development suite.

npm version License: MIT

Usage

Run Context-Pods CLI directly with npx:

npx @context-pods/create generate
npx @context-pods/create wrap ./my-script.py my-wrapper
npx @context-pods/create list

This package acts as a lightweight proxy that:

  1. Temporarily installs the full Context-Pods CLI and its dependencies
  2. Forwards your commands to the CLI
  3. Cleans up after execution

Why this package?

The main @context-pods/cli package uses ES modules and has dependencies that aren't automatically resolved by npx. This runner package solves that issue by handling the installation of all required dependencies in a temporary directory.

For regular use

If you plan to use Context-Pods frequently, we recommend installing the CLI globally:

npm install -g @context-pods/cli

How it works

  1. Creates a temporary directory
  2. Installs @context-pods/cli and @context-pods/core with all their dependencies
  3. Executes your command using the installed CLI
  4. Cleans up the temporary directory

This approach ensures all dependencies are properly resolved without polluting your global or project node_modules.

Related Packages

License

MIT