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

@agenthub-mcp/mcp

v0.1.1

Published

Agent Hub MCP server — connect coding agents to skills, agents, rules, and prompts

Readme

@agenthub-mcp/mcp

MCP server for Agent Hub — connect Cursor, Claude Code, Copilot, or any MCP client to skills, agents, rules, and prompts.

Getting started: see doc/deployment-guide.md §5.

Quick start

# 1. Install catalog via Python CLI
pip install agenthub
agenthub install --bundle r-and-d --target .\.agenthub --source C:\path\to\agenthub-repo

# 2. Run TypeScript MCP server
cd packages\npm\mcp && npm install && npm run build
$env:AGENTHUB_CATALOG_PATH = "C:\path\to\.agenthub"
npx agenthub-mcp --stdio

Install

npm install -g @agenthub-mcp/mcp
# or: npx @agenthub-mcp/mcp --stdio
# or from this repo:
cd packages/npm/mcp && npm install && npm run build

Download catalog

Use the Python CLI (or copy from repo) to install a catalog:

pip install agenthub
agenthub install --bundle r-and-d --target ./.agenthub --source /path/to/agenthub-repo

This writes .agenthub/ plus agenthub-lock.json.

Run locally (PowerShell)

From repo root after building the package:

cd packages/npm/mcp
npm install
npm run build

$env:AGENTHUB_CATALOG_PATH = "C:\path\to\.agenthub"
node .\dist\cli.js --stdio

Or use the bin entry:

$env:AGENTHUB_CATALOG_PATH = "C:\path\to\.agenthub"
npx agenthub-mcp --stdio

Connect in mcp.json

{
  "mcpServers": {
    "agenthub": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@agenthub-mcp/mcp", "--stdio"],
      "env": {
        "AGENTHUB_CATALOG_PATH": ".agenthub"
      }
    }
  }
}

Global install alternative:

npm install -g @agenthub-mcp/mcp
# then command: agenthub-mcp  (Windows may need the full path to the bin)

If AGENTHUB_BUNDLE is unset, bundles are read from agenthub-lock.json in the catalog root.

CLI

agenthub-mcp --stdio [--catalog <path>]

| Flag | Description | |------|-------------| | --stdio | Run stdio MCP transport (default) | | --catalog <path> | Catalog directory (overrides AGENTHUB_CATALOG_PATH) |

Environment

| Variable | Required | Purpose | |----------|----------|---------| | AGENTHUB_CATALOG_PATH | Yes* | Installed catalog dir (.agenthub/) | | AGENTHUB_CACHE_PATH | No | Fetch cache dir (default: <catalog>/.agenthub-cache/) | | AGENTHUB_BUNDLE | No | Comma-separated bundle ids | | AGENTHUB_TOOL_DESC_MODE | No | active (default) or passive |

*Or pass --catalog <path> on the CLI.

MCP tools

Same surface as the Python server:

  • list_skills, get_skill, get_skill_file
  • list_agents, get_agent, get_agent_file
  • list_rules, get_rule, get_rule_file
  • list_prompts, get_prompt, get_prompt_file
  • list_bundles

get_* handlers cache bodies and supporting files locally (agenthub-cache-lock.json under .agenthub-cache/ by default). Set AGENTHUB_CACHE_PATH to override.

Test

cd packages/npm/mcp
npm test