il2cpp-dump-analyzer-mcp
Version:
Agentic RAG system for analyzing IL2CPP dump.cs files from Unity games
13 lines (12 loc) • 408 B
TypeScript
import { IL2CPPVectorStore } from '../embeddings/vector-store';
/**
* Initialize the MCP server with a vector store
* @param store Vector store instance
*/
export declare function initializeVectorStore(store: IL2CPPVectorStore): void;
/**
* Start the MCP server
* @param port Port to listen on
* @param host Host to bind to
*/
export declare function startMcpServer(port: number, host: string): void;