templui-mcp-server
Version:
A Model Context Protocol (MCP) server for TemplUI components, providing AI assistants with access to component source code, documentation, demos, and metadata.
12 lines (11 loc) • 408 B
TypeScript
export interface ComponentInfo {
name: string;
displayName: string;
description: string;
category: string;
hasJavaScript: boolean;
installCommand: string;
}
export declare const TEMPLUI_COMPONENTS: ComponentInfo[];
export declare function getComponentByName(name: string): ComponentInfo | undefined;
export declare function getComponentsByCategory(category: string): ComponentInfo[];