UNPKG

snes-disassembler

Version:

A Super Nintendo (SNES) ROM disassembler for 65816 assembly

20 lines 679 B
/** * MCP Integration Module * * This module provides integration with Model Context Protocol (MCP) servers * for enhanced analysis capabilities. Currently provides stubs that can be * replaced with actual MCP server connections. */ export interface MCPToolOptions { data?: number[]; format?: string; extractVectors?: boolean; bankAware?: boolean; [key: string]: any; } /** * Call a specific MCP tool with the given parameters * This is a stub implementation that can be replaced with actual MCP integration */ export declare function callMCPTool(toolName: string, options: MCPToolOptions): Promise<any>; //# sourceMappingURL=mcp-integration.d.ts.map