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

@presto-ai/skills-mcp-local

v0.1.4

Published

MCP server that dynamically discovers and exposes local skills

Readme

Skills MCP Server

Alpha Release - This project is in early development. APIs and features may change.

A Model Context Protocol (MCP) server that discovers and manages local skills for AI agents. Skills are specialized capabilities defined in SKILL.md files that extend what Claude and other LLMs can do.

Features

  • Dynamic Skill Discovery - Automatically discovers skills installed on your machine
  • Marketplace Integration - Browse and install skills from GitHub-based marketplaces
  • Update Detection - Checks for skill updates at startup and notifies you
  • Easy Updates - One command to update all skills or specific ones

Installation

Via npm (Recommended)

npm install -g @presto-ai/skills-mcp-local

From Source

git clone https://github.com/jrenaldi79/skills-mcp-local.git
cd skills-mcp-local
npm install
npm run build

Configuration

Add to your Claude Code MCP configuration (~/.claude/claude_desktop_config.json):

If installed via npm

{
  "mcpServers": {
    "skills": {
      "command": "npx",
      "args": ["@presto-ai/skills-mcp-local"]
    }
  }
}

If installed from source

{
  "mcpServers": {
    "skills": {
      "command": "node",
      "args": ["/path/to/skills-mcp-local/dist/index.js"]
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | skills_list_installed | List all installed skills (metadata shown in tool description) | | skills_discover | Browse skills from configured marketplaces | | skills_install | Download and install a skill from a marketplace | | skills_update | Update installed skills to latest versions | | skills_configure_marketplace | Add, remove, or list marketplace URLs | | skills_get_info | Get detailed information about a skill | | skills_onboarding | Learn how skills work |

Skill Locations

Skills are discovered from these locations (in order of priority):

  1. ~/skills/ - Primary location
  2. ~/.claude/skills/ - Claude-specific
  3. .claude/skills/ - Current project
  4. ~/Documents/skills/ - Fallback
  5. ~/.local/share/skills/ - XDG location
  6. /usr/local/share/skills/ - System-wide

Marketplaces

The default marketplace is:

https://github.com/anthropics/skills/tree/main/skills

Add custom marketplaces using skills_configure_marketplace:

action: "add"
url: "https://github.com/your-org/your-skills/tree/main/skills"

How Updates Work

  1. When you install a skill via skills_install, the commit hash is saved
  2. At server startup, each skill's source is checked against the marketplace
  3. If a newer commit exists, the skill shows "Update available" in the tool description
  4. Run skills_update to download the latest version

Skills installed manually (not via skills_install) cannot be auto-updated.

Development

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

# Lint
npm run lint

# Build
npm run build

Skill Format

Skills follow the agentskills.io specification. Each skill requires a SKILL.md file with YAML frontmatter:

---
name: my-skill
description: What this skill does and when to use it
license: MIT
compatibility: Works with Claude Code
metadata:
  author: your-name
  version: "0.1.0"
---

# My Skill

Instructions for using this skill...

Project Structure

skills-mcp-local/
├── src/
│   ├── index.ts              # Entry point
│   ├── server/               # MCP server setup
│   ├── tools/                # Tool implementations
│   ├── managers/             # Business logic
│   ├── utils/                # Utilities
│   └── types/                # TypeScript types
├── tests/                    # Test files
├── skills/                   # Test marketplace
└── dist/                     # Compiled output

License

MIT

Contributing

This project is in alpha. Contributions welcome but expect breaking changes.