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) • 546 B
TypeScript
export interface CreateSlideArgs {
deckPath: string;
slideType: 'title' | 'content' | 'two-column' | 'image' | 'chart' | 'interactive' | 'custom';
content: {
title?: string;
subtitle?: string;
body?: string;
leftColumn?: string;
rightColumn?: string;
image?: string;
chart?: string;
};
layout?: string;
position?: number;
}
export declare function createSlide(args: CreateSlideArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;