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

mcpier

v0.1.7

Published

pier — CLI for mcpier, a self-hosted MCP control plane. Install, sync, browse, backup MCP servers from your homelab.

Readme

mcpier

npm version ci license

CLI for Pier — a self-hosted control plane for Model Context Protocol servers.

pier points at a Pier server running on your homelab and keeps every client machine in sync with it. One manifest on the server, one pier sync on every laptop. No API keys in ~/.claude.json. Install new MCPs with one command.

Install

npm i -g mcpier

Requires Node 20+. Installs the pier binary globally.

Prerequisites

A running Pier server. Deploy one in a single command — see the main repo for Docker, Docker Compose, and Kubernetes one-liners.

Quickstart

# Point CLI at your Pier server (once per machine)
pier login http://pier.homelab:8420 --token <your-device-token>

# Install an MCP — prompts for secrets, stores them on Pier, writes the client config
pier install brainstorm-mcp --location remote --sync claude-code

# Restart Claude Code → brainstorm_* tools live

Or scripted:

pier install brainstorm-mcp --location remote --non-interactive \
  --set openai_key=sk-... \
  --set gemini_key=... \
  --sync claude-code

Or from any git repo shipping a pier.yaml at its root:

pier install-git github.com/spranab/some-mcp --sync claude-code

Commands

| Command | What it does | |---|---| | pier login <server> --token <t> | Save server URL + device token to ~/.config/pier/config.json | | pier status | Show server health, manifest summary, spawned MCPs, secret count | | pier install <name> | Install from a subscribed catalog (interactive) | | pier install-git <url> | Install from a git repo or raw pier.yaml URL | | pier sync | Pull manifest + secrets and write client configs (default: claude-code) | | pier sync --clients claude-code,cursor,codex | Sync multiple clients in one call | | pier secrets list | List secret keys stored on the server (not values) | | pier secrets set <key> <value> | Store a secret (AES-256-GCM encrypted at rest) | | pier backup -o <file> | Download a JSON bundle (encrypted DB + manifest) | | pier restore <file> | Restore from a bundle — same PIER_MASTER_KEY required |

install options

| Flag | Purpose | |---|---| | --as <name> | Install under a different manifest key | | --location <mode> | Skip the where-to-run prompt: local (client spawns) or remote (Pier spawns, clients get a URL) | | --set <key=value> | Pre-supply a secret (repeatable) | | --non-interactive | Fail instead of asking for missing values | | --source <name> | Narrow to a single subscribed catalog | | --sync <clients> | Run pier sync --clients <clients> after install |

Run pier <command> --help for full details.

Supported clients (via pier sync)

  • Claude Code (~/.claude.json)
  • Claude Desktop (platform-specific path)
  • Cursor (~/.cursor/mcp.json)
  • Codex (~/.codex/config.toml)

(Continue, Windsurf, and VS Code / GitHub Copilot support coming.)

Catalogs subscribed by default

Anything not in a subscribed catalog installs one paste away via pier install-git.

Trust model

Pier's UI and CLI label sources by authority:

| Source | Badge | Why | |---|---|---| | MCP Registry | ✓ registry (green) | Reverse-DNS namespace verified via GitHub OAuth / DNS TXT — unforgeable per namespace | | Subscribed catalog.json feeds | ✓ curated (amber) | Maintainer-attested in PR; you trust the catalog | | install-git | (no badge) | Explicit user confirmation; you trust the URL |

Links

  • Source: https://github.com/spranab/mcpier
  • Server deploy: https://github.com/spranab/mcpier#install
  • Issues: https://github.com/spranab/mcpier/issues
  • Releases: https://github.com/spranab/mcpier/releases

License

MIT.