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

@prompt-stack/cli

v2.0.1

Published

Prompt Stack CLI - Install and manage MCP stacks, runtimes, and tools

Readme

pstack

Package manager for MCP stacks. Install tools that work with Claude, Codex, and Gemini.

Install

npm i -g @prompt-stack/cli

Quick Start

# See what's available
pstack search --all

# Install a stack
pstack install stack:slack

# Add your API key
nano ~/.prompt-stack/stacks/slack/.env

# Done - Claude/Codex/Gemini can now use Slack tools

Commands

pstack search <query>      # Search for packages
pstack search --all        # List all packages
pstack install <pkg>       # Install a package
pstack remove <pkg>        # Remove a package
pstack list [kind]         # List installed (stacks, runtimes, tools, agents)
pstack update [pkg]        # Update packages
pstack doctor              # Check system health

Available Stacks

| Stack | Description | Auth | |-------|-------------|------| | stack:postgres | Query PostgreSQL databases | DATABASE_URL | | stack:slack | Send messages, search channels | SLACK_BOT_TOKEN | | stack:notion-workspace | Pages, databases, search | NOTION_API_KEY | | stack:google-workspace | Gmail, Sheets, Docs, Drive, Calendar | OAuth | | stack:google-ai | Gemini, Imagen, Veo | GOOGLE_AI_API_KEY | | stack:openai | DALL-E, Whisper, TTS, Sora | OPENAI_API_KEY | | stack:zoho-mail | Email via Zoho | OAuth | | stack:content-extractor | YouTube, Reddit, TikTok transcripts | - | | stack:video-editor | Trim, speed, compress videos | - | | stack:ms-office | Read Word/Excel files | - | | stack:whisper | Local audio transcription | - |

Secrets

Each stack has its own .env file:

~/.prompt-stack/stacks/<stack>/.env

When you install a stack, a .env is created with placeholders. Add your keys:

# ~/.prompt-stack/stacks/postgres/.env
DATABASE_URL=postgresql://user:pass@host:5432/db

Secrets are automatically injected into Claude, Codex, and Gemini configs.

How It Works

  1. pstack install stack:slack downloads the MCP server
  2. Creates .env with required secrets as placeholders
  3. Registers the MCP server in ~/.claude/settings.json, ~/.codex/config.toml, ~/.gemini/settings.json
  4. You fill in the API key in .env
  5. Claude/Codex/Gemini can now use the tools

Data Location

~/.prompt-stack/
├── stacks/           # MCP servers (each with .env)
├── runtimes/         # Node, Python, Deno
├── tools/            # ffmpeg, ripgrep, etc.
├── agents/           # Claude, Codex, Gemini CLIs
└── prompt-stack.db   # Local database

License

MIT