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

@cleo-labs/skills-mcp

v0.1.0

Published

MCP server exposing 45 production-grade product compliance skills as native MCP resources, prompts, and tools.

Readme

@cleo-labs/skills-mcp

MIT licensed npm MCP

MCP server exposing 45 production-grade product-compliance skills as native MCP resources, prompts, and tools.

This is the MCP transport for the skills_library repo. Each compliance skill (cosmetics, food, electronics, toys, textiles, supplements, medical devices, customs, recalls, and more) is surfaced to any MCP-aware client as:

  • a resourceskill://<name> returning the full SKILL.md as text/markdown
  • a prompt<name> with an optional {user_query} parameter
  • callable via three top-level toolslist_skills, find_skill, read_skill

Built on the official @modelcontextprotocol/sdk. MIT licensed. Slim Docker image. Works out of the box with Claude Desktop, Cursor, Continue, Zed, and any other MCP client.


Install

Run via npx

npx -y @cleo-labs/skills-mcp@latest

Install globally

npm install -g @cleo-labs/skills-mcp
skills-mcp

Run via Docker

docker run --rm -i ghcr.io/cleo-labs-ia/skills-mcp:latest

The server speaks the MCP JSON-RPC protocol on stdio. It logs operational messages to stderr; stdout is reserved for MCP traffic.


Wire it into your MCP client

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "cleo-skills": {
      "command": "npx",
      "args": ["-y", "@cleo-labs/skills-mcp@latest"]
    }
  }
}

Restart Claude Desktop. The 45 skills will appear under the resources picker (the paper-clip icon) and the slash-commands menu.

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "cleo-skills": {
      "command": "npx",
      "args": ["-y", "@cleo-labs/skills-mcp@latest"]
    }
  }
}

Continue

~/.continue/config.yaml:

mcpServers:
  - name: cleo-skills
    command: npx
    args:
      - "-y"
      - "@cleo-labs/skills-mcp@latest"

Codex / Zed / generic MCP host

Any client that supports the command + args MCP launcher format works the same way. See examples/ for ready-to-copy snippets.


What the server exposes

Resources

| Field | Value | | ----- | ----- | | Count | 45 (one per skill) | | URI scheme | skill://<name> (e.g. skill://cosmetics-compliance) | | Mime type | text/markdown | | Body | The full SKILL.md including YAML frontmatter |

Prompts

| Field | Value | | ----- | ----- | | Count | 45 (one per skill) | | Name | The skill's name (e.g. food-compliance) | | Argument | user_query (optional) — appended after the skill content as a follow-up user message |

Each prompt returns a two-message conversation: a system-style preamble that loads the skill content, followed by the user's question. This makes "load skill + ask question" a single slash command in Claude Desktop.

Tools

| Tool | Args | Returns | | ---- | ---- | ------- | | list_skills | vertical?, query?, limit? | All skills matching the filters | | find_skill | question, limit? | Top-N skills ranked by relevance to a free-text question | | read_skill | name | Full SKILL.md body for one skill |

All tools return both content[].text (JSON-stringified) and structuredContent (parsed object) so they work with old and new MCP clients.

Server info

{
  "name": "cleo-skills-mcp",
  "title": "Cleo Skills MCP",
  "version": "0.1.0",
  "capabilities": { "resources": {}, "prompts": {}, "tools": {}, "logging": {} }
}

Architecture

mcp-server/
├── src/
│   ├── index.ts          # bin entry point (stdio transport)
│   ├── server.ts         # createServer() factory
│   ├── handlers/         # resource / prompt / tool registration
│   ├── tools/            # list_skills / find_skill / read_skill
│   └── skills/           # loader, parser, registry
├── test/                 # vitest suites: unit + e2e via InMemoryTransport
├── examples/             # client config snippets
├── Dockerfile            # multi-stage, node:20-alpine
└── scripts/sync-skills.mjs   # copies ../skills/ into ./skills/ pre-publish

See ARCHITECTURE.md for design notes.


Develop

# Install deps
cd mcp-server
npm install

# Run the server in dev mode (reads from ../skills/)
npm run dev

# Type-check + tests
npm run typecheck
npm test

# Build
npm run build

# Validate via raw JSON-RPC
echo '{"jsonrpc":"2.0","method":"initialize","id":1,"params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"smoke","version":"1.0"}}}' | node dist/index.js

Environment

  • SKILLS_DIR — override the auto-resolved skills directory.

License

MIT. See LICENSE. The skills themselves are also MIT — see the root repo.

Author

Cleo Labs · Naomie Halioua · [email protected]