/** * MCP Tools for Frame Memory * * Defines the tools exposed via Model Context Protocol for AI assistants. * Each tool can search, create, or list Frames with Atlas Frame neighborhoods. */ export interface MCPTool { name: string; description: string; inputSchema: { type: string; required?: string[]; properties: Record; }; } /** * Tool definitions for MCP protocol * * Following ADR-0009, tools use the resource_action naming convention. * Old names (remember, recall, etc.) are maintained as aliases in server.ts. */ export declare const MCP_TOOLS: MCPTool[];