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

@dotuix/mcp

v0.2.5

Published

MCP server for dotuix — lets AI agents generate, pack, and validate .uix files

Readme

@dotuix/mcp

MCP server for dotuix — lets AI agents (Claude Desktop, Cursor, VS Code Copilot) generate, pack, and validate .uix files through tool calls.

Tools

| Tool | Description | | ------------- | ------------------------------------------------------------------------------------------------ | | get_spec | Returns the full .uix format spec from dotuix.uts.qa/llms.txt | | create | One-shot: manifest + files in → packed .uix path out. AI provenance stamped automatically. | | init | Scaffolds a new project from a template (blank / restaurant / catalog / portfolio) | | write_files | Writes generated HTML/JS/CSS into a project directory (auto-stamps ai block in manifest) | | pack | Packs a directory into a .uix file via the CLI | | validate | Validates a .uix file and returns errors/warnings | | info | Reads the manifest.json from a .uix without unpacking |

AI workflow

Recommended: one-shot create

The fastest path — the agent reads the spec once, generates all files in context, and calls create to pack everything atomically:

get_spec → create

The create tool takes a manifest object and files array and returns the .uix path. It auto-stamps ai.generatedBy and ai.generatedAt in the manifest.

Step-by-step (for iterative workflows)

get_spec → init → write_files → pack

Use this when the agent needs to inspect or modify files between steps (e.g. reading back generated content, patching specific files, or validating before packing).

Prerequisites

  • Node.js ≥ 22
  • @dotuix/cli installed globally: npm install -g @dotuix/cli

Claude Desktop setup

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

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

Restart Claude Desktop. You should see the dotuix tools available.

Cursor setup

Add to Cursor settings → MCP:

{
  "dotuix": {
    "command": "npx",
    "args": ["-y", "@dotuix/mcp"]
  }
}

VS Code Copilot setup

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "dotuix": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@dotuix/mcp"]
    }
  }
}

Example prompts

Once connected, you can say things like:

"Read the .uix spec and create a restaurant menu .uix for Al Madina in Doha with 10 items in QAR, pack it to ~/Desktop/almadina.uix"

"Generate a product catalog .uix with 20 fake items in a clean card grid layout and save it to ~/Desktop/catalog.uix"

"Validate ~/Downloads/app.uix and tell me what's wrong"

The agent calls get_speccreate (or initwrite_filespack) and returns the path to the finished .uix file. The ai.generatedBy field is stamped automatically in every file the MCP produces.

"Generate a product catalog .uix with 20 fake items in a clean card grid layout"

The agent calls get_specinitwrite_filespack and returns the path to the finished .uix file.

Links