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

@dereekb/dbx-components-mcp

v13.11.18

Published

MCP server for dbx-components — structured tool access to form fields, Firebase models, server actions, UI components, routes, filters, pipes, and code-scaffolding helpers.

Readme

@dereekb/dbx-components-mcp

MCP server for dbx-components — structured tool access to form fields, Firebase models, server actions, UI components, routes, filters, pipes, and code-scaffolding helpers.

Tools

Tools are clustered by domain. Each cluster exposes lookup, search, examples, and/or scaffold operations.

Clusters with the _m suffix are model extensions — tools that walk a downstream app's source tree to verify end-to-end wiring of a specific dbx-components model type.

| Cluster | Tools | |----------------|----------------------------------------------------------------------------------------------------------------------------------------| | form | dbx_form_lookup, dbx_form_search, dbx_form_examples, dbx_form_scaffold | | ui | dbx_ui_lookup, dbx_ui_search, dbx_ui_examples | | model | dbx_model_lookup, dbx_model_search, dbx_model_hierarchy, dbx_model_decode, dbx_model_validate, dbx_model_validate_api, dbx_model_validate_folder, dbx_model_store_scaffold | | model_test | dbx_model_test_list_app, dbx_model_test_tree, dbx_model_test_search | | storagefile_m | dbx_storagefile_m_validate_app, dbx_storagefile_m_list_app, dbx_storagefile_m_validate_folder | | notification_m | dbx_notification_m_validate_app, dbx_notification_m_list_app, dbx_notification_m_validate_folder | | system_m | dbx_system_m_validate_folder | | action | dbx_action_lookup, dbx_action_examples, dbx_action_scaffold | | route | dbx_route_tree, dbx_route_lookup, dbx_route_search | | filter | dbx_filter_lookup, dbx_filter_scaffold | | pipe | dbx_pipe_lookup | | artifact | dbx_artifact_scaffold, dbx_artifact_file_convention |

Resources

URIs are namespaced by domain (dbx://<domain>/...). Validators, scaffolders, and route trees don't expose resources because their output depends on caller input rather than a fixed catalog.

| URI | Description | |------------------------------------------------------|--------------------------------------------------------| | dbx://form/fields | Form field catalog | | dbx://form/fields/{slug} | Single form field entry | | dbx://form/fields/produces/{produces} | Form fields by output primitive | | dbx://form/fields/tier/{tier} | Form fields by tier | | dbx://form/fields/array-output/{arrayOutput} | Form fields by array-output flag | | dbx://model/firebase | Firebase model catalog | | dbx://model/firebase/{name} | Single Firebase model | | dbx://model/firebase/prefix/{prefix} | Firebase model by collection prefix | | dbx://model/firebase/subcollections/{parent} | Subcollection models nested under a parent identity | | dbx://model/firebase/hierarchy | Full upstream model forest (tree + flat) | | dbx://model/firebase/hierarchy/{root} | Subtree rooted at the supplied model | | dbx://model/firebase/user-keyed-by-id | Models whose doc id IS the Firebase Auth uid (UserRelatedById) | | dbx://model/firebase/user-related | Models with an explicit uid field (UserRelated) | | dbx://action/entries | Action entries catalog (directives, store, states) | | dbx://action/entries/{slug} | Single action entry | | dbx://action/entries/role/{role} | Action entries by role | | dbx://ui/components | UI component catalog | | dbx://ui/components/{slug} | Single UI entry | | dbx://ui/components/category/{category} | UI entries by category | | dbx://ui/components/kind/{kind} | UI entries by Angular kind | | dbx://pipe/entries | Angular pipe catalog | | dbx://pipe/entries/{slug} | Single pipe entry | | dbx://pipe/entries/category/{category} | Pipes by category | | dbx://filter/entries | Filter directive / preset catalog | | dbx://filter/entries/{slug} | Single filter entry | | dbx://filter/entries/kind/{kind} | Filter entries by kind (directive, pattern) |

Usage

{
  "mcpServers": {
    "dbx-components": {
      "command": "npx",
      "args": ["-y", "@dereekb/dbx-components-mcp"]
    }
  }
}

Generated registry data

The Firebase model registry (src/registry/firebase-models.generated.ts) is produced by scripts/extract-firebase-models.mjs, which scans packages/firebase/src/lib/model/** for firestoreModelIdentity(...) calls, converters, interfaces, and enums. Run it via:

npx nx run dbx-components-mcp:generate-firebase-models

The script formats output through Prettier so regenerating produces a byte-equal file when source models haven't changed.