UNPKG

satori-syntax-mcp

Version:

MCP Server for Satori Syntax Generation (140-character X posts)

14 lines (13 loc) 403 B
export type SatoriStructureType = 'A' | 'B' | 'C' | 'D' | 'E'; export interface SatoriGenerateRequest { structure_type: SatoriStructureType; target_audience: string; message_content: string; expected_action: string; news_content?: string; } export interface SatoriGenerateResponse { generated_text: string; structure_type: SatoriStructureType; character_count: number; }