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

@dunx/mcp

v3.2.1

Published

A Model Context Protocol server for dunx apps - bunx @dunx/mcp ./src/app.module.ts

Readme

@dunx/mcp

A Model Context Protocol server that answers questions about a dunx application, so an agent working in one can ask the framework instead of grepping for the answer.

Usage

bunx @dunx/mcp ./src/app.module.ts

Point it at the file that declares your root module. @Module leaves a marker, so a module exported only by name is found on its own. default and root win if present, and --export=<name> settles a file that declares several. The path goes through Bun.resolveSync, so anything import accepts works.

{
  "mcpServers": {
    "dunx": {
      "command": "bunx",
      "args": ["@dunx/mcp", "./src/app.module.ts"]
    }
  }
}

The tools

The Agent tooling guide is canonical.

| Tool | Answers | | ------------------ | ---------------------------------------------------------- | | list_routes | Every route, its verb, path, controller and metadata | | list_gateways | Every WebSocket gateway and the events it handles | | list_providers | What is bound, in which module, and what it depends on | | list_modules | The import graph | | describe_route | One route in full, with its schemas when @dunx/openapi is installed |

Every filter is optional. Omitting one means everything, so a caller that knows nothing still gets a useful first answer.

Notes

  • It reads the app and never boots it. AppFactory.create would open database connections, start queue workers, and run every onInit. Asking a question about the code would then mean running the code. The cost of that is no runtime state: the value of a config field is not answerable here.
  • It reads through the framework's own readers - providersOf, modulesOf, routesOf, gatewaysOf - so an answer cannot drift from what the container and the router actually do.
  • No dependencies. The protocol slice it needs is newline-delimited JSON-RPC 2.0 with three methods, so bunx @dunx/mcp resolves nothing.
  • @dunx/openapi is an optional peer, reached with await import(). Without it the server still works and describe_route omits the schemas.

License

MIT