/** * AWS Infra MCP - Tool Registry * * Central registry for all MCP tools and their handlers. */ import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { ToolContext, ToolResponse } from '../types.js'; export type ToolHandler = (args: Record, context: ToolContext) => Promise; export declare const toolRegistry: Map; export declare const toolHandlers: Map; export declare function registerTool(tool: Tool, handler: ToolHandler): void; //# sourceMappingURL=index.d.ts.map