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

@celiums/mcp

v1.7.2

Published

140,000+ expert AI knowledge modules for coding assistants. Works with Claude Code, Cursor, VS Code, Windsurf.

Readme

@celiums/mcp

140,000+ expert knowledge modules for AI coding assistants. One MCP connection.

Celiums is an MCP server that gives your AI coding assistant access to a massive library of expert knowledge modules — from React to Kubernetes, from HIPAA compliance to financial modeling.

Works with: Claude Code, Cursor, VS Code (Continue), Windsurf, and any MCP-compatible client.

Quick Start

1. Create your account

npx @celiums/mcp --email [email protected]

You'll receive a 6-digit verification code by email. Enter it to get your API key.

Or sign up at celiums.io/signup.

2. Add to your IDE

Claude Code — add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "celiums": {
      "command": "npx",
      "args": ["@celiums/mcp"],
      "env": {
        "CELIUMS_API_KEY": "sk-celiums_YOUR_KEY_HERE"
      }
    }
  }
}

Cursor — add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "celiums": {
      "command": "npx",
      "args": ["@celiums/mcp"],
      "env": {
        "CELIUMS_API_KEY": "sk-celiums_YOUR_KEY_HERE"
      }
    }
  }
}

VS Code + Continue — add to ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["@celiums/mcp"],
          "env": {
            "CELIUMS_API_KEY": "sk-celiums_YOUR_KEY_HERE"
          }
        }
      }
    ]
  }
}

Windsurf — add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "celiums": {
      "command": "npx",
      "args": ["@celiums/mcp"],
      "env": {
        "CELIUMS_API_KEY": "sk-celiums_YOUR_KEY_HERE"
      }
    }
  }
}

3. Use it

Ask your AI assistant:

Use celiums to find best practices for React error boundaries

Tools

| Tool | What it does | |------|-------------| | forage | Search 140,000+ modules by keyword | | absorb | Load a complete knowledge module | | synthesize | AI applies module methodology to your specific task | | sense | Get intelligent module recommendations | | bloom | Generate complete documents (blog posts, SOPs, reports) | | map_network | Browse all modules by category | | account_status | Check your plan, usage, and limits (free) | | account_upgrade | Get a Stripe payment link to upgrade (free) | | account_buy_credits | Buy credit packs (free) | | account_usage | View your request history (free) |

Direct API Access

You can also call the API directly:

curl -X POST https://api.celiums.io/mcp \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-celiums_YOUR_KEY_HERE" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "forage",
      "arguments": {"query": "kubernetes deployment patterns"}
    },
    "id": 1
  }'

Plans

| Plan | Price | Requests/day | |------|-------|-------------| | Free | $0 | 50 | | Pro | $39/mo | 2,000 | | Network | $99/mo | 10,000 (5 seats) |

Upgrade from your IDE: just ask your AI assistant to "upgrade my celiums plan to pro".

Configuration

The MCP client resolves your API key in this order:

  1. --api-key flag
  2. CELIUMS_API_KEY environment variable
  3. Saved key in ~/.celiums/credentials.json
  4. Interactive onboarding (prompts for email)

Links

License

MIT