UNPKG

hatch-slidev-builder-mcp

Version:

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

22 lines (21 loc) 456 B
export interface AddComponentArgs { deckPath: string; slideNumber?: number; componentName: string; parameters: Record<string, any>; position?: { x: number; y: number; }; styling?: { width?: number; height?: number; className?: string; }; } export declare function addComponent(args: AddComponentArgs): Promise<{ content: { type: string; text: string; }[]; }>;