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

licium-cli

v0.1.1

Published

MCP server package manager — discover, install, and manage MCP servers

Readme

licium-cli

MCP server package manager — discover, install, and manage MCP servers from the command line. Think "npm for MCP servers."

Powered by Licium — the MCP server discovery and reputation platform.

Install

npm install -g licium-cli

Or use directly with npx:

npx licium-cli search "email API"

Commands

licium init

Create a licium.json config file in the current directory.

licium init

licium search <query>

Search for MCP servers by name or natural language description. Results are ranked by reputation score and show verification status, GitHub stars, and install commands.

licium search "email"
licium search "database management" --limit 5
licium search "web scraping browser automation"

Verification badges:

  • verified — install, start, and MCP handshake all passed
  • partial — install succeeded but handshake could not be verified
  • failed — verification failed
  • untested — not yet tested

licium add <name>

Add an MCP server to licium.json and automatically sync it to your Claude Desktop configuration.

licium add resend-mcp-server
licium add puppeteer
licium add github --skip-sync    # Don't sync to Claude Desktop

This command:

  1. Searches the Licium registry for the server
  2. Gets server details (install command, required env vars)
  3. Adds it to licium.json
  4. Syncs the config to Claude Desktop's claude_desktop_config.json

licium list

List all MCP servers configured in the current licium.json.

licium list
licium ls          # alias

Shows each server's command, arguments, and required environment variables.

licium remove <name>

Remove an MCP server from licium.json and Claude Desktop config.

licium remove resend-mcp-server
licium rm puppeteer              # alias

licium test

Test all configured MCP servers by spawning each process and performing an MCP handshake (JSON-RPC initialize request over stdio).

licium test

For each server, this:

  1. Spawns the server process
  2. Sends an MCP initialize message
  3. Waits for a valid serverInfo response (15s timeout)
  4. Reports pass/fail/timeout with duration

licium doctor

Diagnose your MCP server configuration and environment.

licium doctor

Checks:

  • Node.js version (>= 18 required)
  • npx availability
  • licium.json exists and is valid JSON
  • Claude Desktop config exists and has MCP servers
  • licium.json and Claude Desktop config are in sync
  • Required environment variables are set
  • Licium API connectivity

licium update [name]

Check for latest versions of installed MCP servers by querying the npm registry.

licium update              # Check all servers
licium update puppeteer    # Check a specific server

Shows current vs. latest version for each npx-based server. Since npx -y always fetches the latest version on each run, this mostly serves as an informational check.

licium stack [name]

Browse and install curated MCP server stacks — pre-configured combinations of servers for common use cases.

licium stack                    # List available stacks
licium stack web-dev            # Install the web development stack
licium stack data-analysis      # Install the data analysis stack
licium stack customer-support --skip-sync

Available stacks:

| Stack | Description | Tools | |-------|-------------|-------| | web-dev | Web development essentials | GitHub, Puppeteer, Brave Search, Filesystem | | data-analysis | Data analysis and visualization | PostgreSQL MCP, Filesystem, Puppeteer, Fetch | | customer-support | Customer support automation | Resend, Slack, Linear, Brave Search | | content-creation | Content creation and research | Filesystem, Brave Search, Fetch, Puppeteer | | dev-tools | Developer productivity tools | GitHub, Git, Brave Search, Linear |

Quick Start

# Initialize a new project
licium init

# Search for email-related MCP servers
licium search "email"

# Add a server (auto-syncs to Claude Desktop)
licium add resend-mcp-server

# Or install a whole stack at once
licium stack web-dev

# Test the connections
licium test

# Check everything is configured correctly
licium doctor

Configuration

licium.json

Licium creates a licium.json file in your project directory:

{
  "servers": {
    "resend-mcp-server": {
      "command": "npx",
      "args": ["-y", "@resend/mcp-server"],
      "env": {
        "RESEND_API_KEY": ""
      }
    },
    "puppeteer": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-server-puppeteer"]
    }
  }
}

Claude Desktop

Servers are automatically synced to Claude Desktop's config at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/claude/claude_desktop_config.json

Use --skip-sync with licium add or licium stack to disable auto-sync.

Environment Variables

  • LICIUM_API_URL — Override the Licium API URL (default: https://licium.ai)

Requirements

  • Node.js >= 18
  • npx (included with Node.js)

License

MIT