touchdesigner-mcp-server
Version:
MCP server for TouchDesigner
11 lines (10 loc) • 402 B
TypeScript
export type PresenterFormat = "json" | "yaml" | "markdown";
export declare const DEFAULT_PRESENTER_FORMAT: PresenterFormat;
export interface PresenterPayload {
text: string;
detailLevel?: string;
structured?: unknown;
context?: Record<string, unknown>;
template?: string;
}
export declare function presentStructuredData(payload: PresenterPayload, format?: PresenterFormat): string;