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

@onurkerem/muninn

v0.3.0

Published

MCP server that gives agents fresh, on-demand access to documentation stored in GitHub repositories

Readme

muninn

An MCP server that gives agents fresh, on-demand access to documentation stored in GitHub repositories (public or private).

Installation

Add to your MCP client configuration:

{
  "mcpServers": {
    "muninn": {
      "command": "npx",
      "args": [
        "-y", "@onurkerem/muninn@latest",
        "--github-pat", "YOUR_GITHUB_PAT",
        "--repos", "owner/repo1,owner/repo2"
      ]
    }
  }
}

Note: --github-pat is optional for public repos, required for private repos.

Version Options

| Config | Behavior | |--------|----------| | @onurkerem/muninn@latest | Always uses the newest version (recommended) | | @onurkerem/[email protected] | Pins to a specific version for stability | | @onurkerem/muninn | Uses cached version (may not auto-update) |

Note: Without @latest or a specific version, npx caches the package and may not automatically update to newer releases.

Configuration

  • --github-pat: GitHub Personal Access Token (optional for public repos, required for private)
  • --repos: Comma-separated list of repositories in owner/repo format

Tools

list_repos

Returns the configured repository list.

get_repo_info

Returns metadata and README preview for a single repo.

Parameters:

  • repo: Repository in owner/repo format

list_docs

Recursively lists all .md and .txt files in a repo.

parameters:

  • repo: Repository in owner/repo format
  • path: Optional path to list from (defaults to root)

get_doc

Fetches the raw content of a single file by path.

Parameters:

  • repo: Repository in owner/repo format
  • path: File path within the repository

search_docs

Full-text search across configured repos (local, instant).

Parameters:

  • query: Search query (2+ characters required)
  • repo: Optional repository to search (omit to search all configured repos)

list_images

Recursively lists all image files (jpg, jpeg, png) in a repo with local file paths.

Parameters:

  • repo: Repository in owner/repo format
  • path: Optional path to list from

get_image

Get the local file path for an image. Use with image analysis tools.

Parameters:

  • repo: Repository in owner/repo format
  • path: Image file path within the repository

Response Format

Tools return data in TOON format for structured data, or raw markdown for file content.

License

MIT