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
TypeScript
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;
}[];
}>;