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

@permamind/mcp

v1.0.20

Published

MCP server for Agent Skills Registry - exposes publish, search, and install to Claude AI

Readme

@permamind/mcp

MCP server for Agent Skills Registry - publish, search, and install Claude Agent Skills through natural language.

Installation

No installation needed - runs via npx.

Configuration

Add to your .mcp.json:

{
  "mcpServers": {
    "permamind-skills": {
      "command": "npx",
      "args": ["@permamind/mcp@latest"],
      "env": {
        "SEED_PHRASE": "your twelve word seed phrase here"
      }
    }
  }
}

Restart Claude Code to load the server.

Environment Variables

  • SEED_PHRASE (required): 12-word BIP39 mnemonic for wallet generation
  • LOG_LEVEL (optional): error, warn, info, debug (default: info)
  • REGISTRY_PROCESS_ID (optional): Custom AO registry process ID
  • INSTALL_LOCATION (optional): Custom skill install directory (default: ~/.claude/skills)

Usage

Check Server Health

User: Check if the skills MCP server is working

Returns server status, version, and wallet address.

Search for Skills

User: Search for skills about blockchain
User: Find skills tagged with "ao" and "arweave"

Returns list of matching skills with names, versions, descriptions, and authors.

Install Skills

User: Install the ao-basics skill
User: Install ao-basics version 1.0.0

Installs the skill to ~/.claude/skills/ with automatic dependency resolution.

Publish Skills

User: Publish the skill in /absolute/path/to/skill-directory

Publishes the skill to Arweave and registers it in the AO registry. Returns transaction ID and gateway URL.

Requirements

  • Node.js ≥ 20.11.0
  • 12-word BIP39 seed phrase
  • Arweave wallet with AR tokens (for publishing only)

Tools Available

  • ping - Health check
  • search_skills - Search registry by keyword/tags
  • install_skill - Install skills with dependencies
  • publish_skill - Publish skills to registry

Troubleshooting

Server not loading?

  • Restart Claude Code after editing .mcp.json
  • Check SEED_PHRASE is exactly 12 words
  • Set LOG_LEVEL: "debug" to see detailed logs

Publish fails?

  • Ensure wallet has AR tokens
  • Verify SKILL.md has valid frontmatter
  • Check Arweave gateway connectivity

Can't find skills?

  • Try broader search terms
  • Remove tag filters
  • Search with empty query to list all skills

License

MIT