@hanzo/ui
Version:
Multi-framework UI library with React, Vue, Svelte, and React Native support. Based on shadcn/ui with comprehensive framework coverage.
16 lines (12 loc) • 342 B
JavaScript
// @ts-check
#!/usr/bin/env node
const { program } = require("commander")
program
.name("npx @hanzo/ui registry:mcp")
.description("Run the Hanzo UI registry with MCP support")
.action(() => {
console.log("Starting Hanzo UI MCP server...")
// Execute the MCP server
require("../bin/registry-mcp.js")
})
program.parse()