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

@forgespace/ui-mcp

v0.14.1

Published

AI-driven UI generation via Model Context Protocol. Generate React, Next.js, Vue, Angular applications from natural language.

Readme

npm version CI Coverage License: MIT TypeScript MCP Node.js

Part of the Forge Space ecosystem.

Siza Capabilities

Architecture

Siza MCP is a thin protocol adapter. All AI/generation logic lives in @forgespace/siza-gen:

siza-mcp (~355 KB)                 @forgespace/siza-gen (~1.8 MB)
├── src/index.ts (MCP server)      ├── ml/        (embeddings, quality, training)
├── tools/     (22 tool defs)      ├── generators/ (react, vue, angular, svelte, html)
├── services/  (figma, analysis)   ├── registry/   (502 snippets, compositions, packs)
├── resources/ (MCP resources)     ├── feedback/   (self-learning, pattern promotion)
└── lib/       (browser, image)    └── quality/    (anti-generic rules, diversity)

Quick Start

# NPX (instant)
npx -y siza-mcp@latest

# Global install
npm install -g siza-mcp && siza-mcp

# Docker
docker build -t siza-mcp . && docker run --rm -i siza-mcp

IDE Integration

Add to your MCP configuration (Claude Code, Windsurf, Cursor, VS Code):

{
  "mcpServers": {
    "siza-mcp": {
      "command": "npx",
      "args": ["-y", "siza-mcp@latest"],
      "env": {
        "FIGMA_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

Tools

| Tool | Category | Description | | ----------------------------- | -------- | ------------------------------------------------------------------------------------------ | | scaffold_full_application | Code | Full project boilerplate (React/Next.js/Vue/Angular/HTML + Tailwind) | | generate_ui_component | Code | UI components with style audit, supports shadcn/ui, Radix, Headless UI, Material, PrimeVue | | generate_form | Code | Production forms with Zod/Yup validation, multi-step flows, accessible markup | | generate_page_template | Code | Pre-built pages (landing, dashboard, auth, pricing, CRUD) | | generate_prototype | Design | Interactive HTML prototypes with navigation | | generate_design_image | Design | SVG/PNG mockups of UI screens | | image_to_component | Code | Screenshot/wireframe to framework-specific component | | refine_component | Code | Improve components via natural language feedback | | generate_api_route | Backend | API routes with validation, auth, and error handling | | generate_backend_module | Backend | Full feature modules with routes, services, middleware | | scaffold_backend | Backend | Complete backend projects with auth, DB, monitoring | | generate_from_template_pack | Code | Multi-page apps from curated packs (SaaS, Landing, AI Chat) | | figma_context_parser | Context | Read Figma files, extract tokens, map to Tailwind | | figma_push_variables | Design | Write design tokens back to Figma | | fetch_design_inspiration | Context | Extract visual metadata from URLs | | analyze_design_references | Context | Analyze design references, detect patterns | | analyze_design_image | ML | Analyze design images for training data | | analyze_component_library | Context | Analyze component library patterns | | audit_accessibility | Quality | WCAG 2.1 audit with fix suggestions | | submit_feedback | Quality | Submit feedback to improve future output | | manage_training | ML | Training data ingestion and fine-tuning |

Framework & Library Support

| Library | React | Vue | Angular | Svelte | HTML | | ----------- | ----------------- | --------------- | ----------------- | ------------------ | ------------ | | shadcn/ui | shadcn/ui | shadcn-vue | Tailwind | bits-ui | Tailwind | | Radix | @radix-ui/react | @radix-ui/vue | Tailwind | @radix-ui/svelte | Tailwind | | Headless UI | @headlessui/react | @headlessui/vue | Tailwind | @headlessui/svelte | Tailwind | | Material | @mui/material | Vuetify | @angular/material | @smui/material | Tailwind | | PrimeVue | Headless UI | primevue | primeng | Tailwind | Tailwind | | none | Tailwind CSS | Tailwind CSS | Tailwind CSS | Tailwind CSS | Tailwind CSS |

Brand Identity Integration

All generation tools accept an optional brand_identity parameter — a JSON string from branding-mcp's generate_brand_identity tool. When provided, brand colors, typography, and spacing are injected into the design context.

Environment Variables

| Variable | Required | Description | | -------------------- | -------------------- | ------------------------------------------------------------------------------- | | FIGMA_ACCESS_TOKEN | Only for Figma tools | Token from Figma Settings |

Development

npm install && npm run build
npm test                  # 437 tests, 35 suites
npm run validate          # lint + format + typecheck + test

License

MIT