UNPKG

@gebrai/gebrai

Version:

Model Context Protocol server for GeoGebra mathematical visualization

27 lines 542 B
#!/usr/bin/env node /** * CLI entry point for GeoGebra MCP Tool * Enables npx usage: npx @gebrai/gebrai */ /** * Display help information */ declare function showHelp(): void; /** * Display version information */ declare function showVersion(): void; /** * Parse command line arguments */ declare function parseArgs(args: string[]): { help: boolean; version: boolean; logLevel: string; port: string | undefined; }; /** * Main CLI function */ declare function main(): Promise<void>; //# sourceMappingURL=cli.d.ts.map