il2cpp-dump-analyzer-mcp
Version:
Agentic RAG system for analyzing IL2CPP dump.cs files from Unity games
19 lines (18 loc) • 503 B
TypeScript
export interface ServerConfig {
port: number;
host: string;
dumpFile: string;
model: string;
logLevel: 'debug' | 'info' | 'warn' | 'error';
hashFile?: string;
forceReprocess: boolean;
}
export interface StdioConfig {
dumpFile: string;
model: string;
logLevel: 'debug' | 'info' | 'warn' | 'error';
hashFile?: string;
forceReprocess: boolean;
}
export declare function parseServerArgs(): ServerConfig;
export declare function parseStdioArgs(): StdioConfig;