hatch-slidev-builder-mcp
Version:
A comprehensive MCP server for creating Slidev presentations with component library, interactive elements, and team collaboration features
18 lines (17 loc) • 398 B
TypeScript
export interface CreateDeckArgs {
title: string;
template?: string;
theme?: string;
outputPath: string;
options?: {
includeInteractiveComponents?: boolean;
pythonIntegration?: boolean;
customCSS?: string;
};
}
export declare function createDeck(args: CreateDeckArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;