@gianpieropuleo/radix-mcp-server
Version:
A Model Context Protocol (MCP) server for Radix UI libraries (Themes, Primitives, Colors), providing AI assistants with access to component source code, installation guides, and design tokens.
20 lines (19 loc) • 650 B
JavaScript
export var Library;
(function (Library) {
Library["Themes"] = "themes";
Library["Primitives"] = "primitives";
Library["Colors"] = "colors";
Library["All"] = "all";
})(Library || (Library = {}));
export var ComponentType;
(function (ComponentType) {
ComponentType["Styled"] = "styled";
ComponentType["Unstyled"] = "unstyled";
ComponentType["ColorScale"] = "color-scale";
})(ComponentType || (ComponentType = {}));
export var Package;
(function (Package) {
Package["Themes"] = "@radix-ui/themes";
Package["Primitives"] = "@radix-ui/react-";
Package["Colors"] = "@radix-ui/colors";
})(Package || (Package = {}));