UNPKG

hatch-slidev-builder-mcp

Version:

A comprehensive MCP server for creating Slidev presentations with component library, interactive elements, and team collaboration features

13 lines (12 loc) 354 B
export interface ListComponentsArgs { category?: 'charts' | 'shapes' | 'layouts' | 'interactions' | 'frameworks'; scope?: 'hatch' | 'community' | 'all'; search?: string; author?: string; } export declare function listComponents(args?: ListComponentsArgs): Promise<{ content: { type: string; text: string; }[]; }>;