@context-pods/create
v0.2.0
Published
npx runner for Context-Pods MCP development suite
Downloads
11
Maintainers
Readme
@context-pods/create
npx runner for Context-Pods MCP (Model Context Protocol) development suite.
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 listThis package acts as a lightweight proxy that:
- Temporarily installs the full Context-Pods CLI and its dependencies
- Forwards your commands to the CLI
- 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/cliHow it works
- Creates a temporary directory
- Installs
@context-pods/cliand@context-pods/corewith all their dependencies - Executes your command using the installed CLI
- Cleans up the temporary directory
This approach ensures all dependencies are properly resolved without polluting your global or project node_modules.
Related Packages
@context-pods/cli- Full CLI for regular use@context-pods/core- Core utilities and types@context-pods/server- MCP server implementation@context-pods/testing- Testing framework
License
MIT
