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.
17 lines (16 loc) • 373 B
TypeScript
export declare function initializeUpdater(updateService: any): void;
export declare function handleRefreshCache({ clearAll }?: {
clearAll?: boolean;
}): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export declare const schema: {
clearAll: {
type: string;
description: string;
default: boolean;
};
};