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

@x12i/memorix-catalox-api

v1.33.0

Published

HTTP API for Memorix Catalox — metadata control plane (manage Catalox catalogs with scope, execute engines, Mappix BFF, abstraction).

Readme

@x12i/memorix-catalox-api

HTTP control plane for Memorix Catalox metadata — formerly @x12i/memorix-schema-api.

  • Manage catalog items in memorix-catalox (each item carries scope: { domains, agents })
  • Execute engines that consume that metadata (completion, inventory reconcile, abstract list/item) — execute requests do not take scope
  • Also hosts Schema UI metadata routes, Mappix BFF, and abstraction routes

Default port 5180 (MEMORIX_CATALOX_API_PORT, falls back to SCHEMA_API_PORT / PORT).

Data consumption (lists, records, pipeline runtime) stays on memorix-explorer-api (:5181).

Quick start

cd memorix-catalox-api
npm install
npm run dev                   # tsx serve on :5180

CLI: npx memorix-catalox-api serve

With Schema UI:

cd memorix-schema-ui && npm run dev   # starts this API (:5180) + Vite (:5174)

With Catalox Manager:

cd memorix-catalox-manager && npm run dev   # this API (:5180) + Vite (:5177)

Catalox routes (v1)

| Method | Path | Notes | |--------|------|--------| | GET | /api/catalox/health | Liveness | | GET | /api/catalox/catalogs | All 13 kinds + counts (honest empty, not false unavailable) | | GET | /api/catalox/catalogs/:id/items | List items; each includes scope | | GET | /api/catalox/catalogs/:id/items/:itemId | Get item + scope | | POST | /api/catalox/catalogs/:id/items | Create (body requires scope) | | PUT | /api/catalox/catalogs/:id/items/:itemId | Upsert (body requires scope) | | DELETE | /api/catalox/catalogs/:id/items/:itemId | Delete | | POST | /api/catalox/execute/completion | Run completion mappings (no scope) | | POST | /api/catalox/execute/inventory-reconcile | Reconcile vs Mongo (no scope) | | POST | /api/catalox/execute/abstract/list | Abstract list (no scope) | | POST | /api/catalox/execute/abstract/item | Abstract item (no scope) |

Writes require MEMORIX_SCHEMA_UI_ENABLE_METADATA_WRITES=true (or MEMORIX_EXPLORER_ENABLE_METADATA_WRITES=true).

Legacy Schema UI routes under /api/metadata/* and /api/abstraction/* remain for the existing UI.

Environment

| Variable | Default | Description | |----------|---------|-------------| | MEMORIX_CATALOX_API_PORT | 5180 | Listen port (SCHEMA_API_PORT still accepted) | | MONGO_URI | — | Mongo | | MEMORIX_CATALOX_DB | memorix-catalox | Catalox DB name | | MEMORIX_SCHEMA_UI_ENABLE_METADATA_WRITES | off | Enable manage + execute writes |

Related