UNPKG

@monsoft/mcp-docscribe

Version:

A Model Context Protocol implementation for generating comprehensive documentation

14 lines (13 loc) 355 B
type ServerParams = { token: string; aiProvider?: 'anthropic' | 'openai'; port?: number; runSse?: boolean; }; /** * Starts the DocScribe MCP server * @param params - Server parameters * @returns Promise resolving when the server is ready */ export declare function startDocScribeServer(params: ServerParams): Promise<void>; export {};