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

@porio/install

v0.0.2

Published

One-shot interactive installer for the Porio MCP server (Claude Code, Cursor, VS Code Continue, Codex CLI)

Readme

@porio/install

One-shot interactive installer that wires the Porio MCP server into your AI coding harness of choice.

npx @porio/install <your-porio-token>

The installer walks you through three prompts:

  1. Token management — inline the token in the MCP config (easiest) or reference it via $PORIO_TOKEN.
  2. Scope — install for the current project only, or globally.
  3. Harnesses — Claude Code, Cursor, VS Code (Continue), Codex CLI. Pick any combination.

It then writes the right config files for each harness, preserving any existing MCP entries you already have.

Get a token

Create a long-lived org-scoped API key at https://app.porio.ai/settings/api-keys.

Supported harnesses

| Harness | Global config | Project config | Extras written | | ------------------ | ------------------------ | --------------------------- | --------------------- | | Claude Code | ~/.claude.json | <project>/.mcp.json | slash command + skill | | Cursor | ~/.cursor/mcp.json | <project>/.cursor/mcp.json| — | | VS Code (Continue) | ~/.continue/mcpServers/porio.yaml | <project>/.continue/mcpServers/porio.yaml | — | | Codex CLI | ~/.codex/config.toml | (machine-wide only) | — |

Codex CLI has no project-scoped config — the porio entry lives in ~/.codex/config.toml regardless of the scope you pick.

What the installer wires

Every harness ends up launching the same stdio MCP server:

npx -y -p @porio/cli porio mcp

with PORIO_TOKEN either inlined (direct mode) or referenced from your shell env (env mode).

Uninstall

The installer is purely additive — nothing is registered with your OS. To remove:

  • Claude Code — delete the porio entry under mcpServers in ~/.claude.json or .mcp.json, plus .claude/commands/porio.md and .claude/skills/porio/.
  • Cursor — delete the porio entry under mcpServers in ~/.cursor/mcp.json or .cursor/mcp.json.
  • Continue — delete ~/.continue/mcpServers/porio.yaml or the project-local equivalent.
  • Codex CLI — delete the [mcp_servers.porio] section (and [mcp_servers.porio.env]) from ~/.codex/config.toml.

Hidden non-interactive mode

For CI / smoke tests:

PORIO_INSTALL_NONINTERACTIVE=1 node bin.js <token> \
  --target=claude-code,cursor,vscode,codex \
  --scope=global \
  --token-mode=direct \
  --config-root=/tmp/porio-install-smoke

--config-root reroots all writes under one tmpdir for safe testing.

Publishing

The user publishes manually (OTP-protected):

cd porio-install
npm publish --access public

Bump the version in package.json first.