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.
23 lines (22 loc) • 535 B
TypeScript
export declare function initializeGitHubIntegration(client: any, updateService: any): void;
export declare function handleListComponents({ category, useDynamic }?: {
category?: string;
useDynamic?: boolean;
}): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare const schema: {
category: {
type: string;
description: string;
enum: string[];
};
useDynamic: {
type: string;
description: string;
default: boolean;
};
};