/** * OMX Project Memory & Notepad MCP Server * Provides persistent project memory and session notepad tools * Storage: .omx/project-memory.json, .omx/notepad.md */ export declare function buildMemoryServerTools(): ({ name: string; description: string; inputSchema: { type: string; properties: { section: { type: string; enum: string[]; }; workingDirectory: { type: string; }; memory?: undefined; merge?: undefined; category?: undefined; directive?: undefined; priority?: undefined; context?: undefined; content?: undefined; daysOld?: undefined; }; required?: undefined; }; } | { name: string; description: string; inputSchema: { type: string; properties: { section?: undefined; memory: { type: string; description: string; }; merge: { type: string; description: string; }; workingDirectory: { type: string; }; category?: undefined; directive?: undefined; priority?: undefined; context?: undefined; content?: undefined; daysOld?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { section?: undefined; memory?: undefined; merge?: undefined; category: { type: string; description: string; }; content: { type: string; description: string; }; workingDirectory: { type: string; }; directive?: undefined; priority?: undefined; context?: undefined; daysOld?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { section?: undefined; memory?: undefined; merge?: undefined; category?: undefined; directive: { type: string; description: string; }; priority: { type: string; enum: string[]; }; context: { type: string; }; workingDirectory: { type: string; }; content?: undefined; daysOld?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: string; properties: { section?: undefined; memory?: undefined; merge?: undefined; category?: undefined; directive?: undefined; priority?: undefined; context?: undefined; content: { type: string; description: string; }; workingDirectory: { type: string; }; daysOld?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { required?: undefined; type: string; properties: { section?: undefined; memory?: undefined; merge?: undefined; category?: undefined; directive?: undefined; priority?: undefined; context?: undefined; content?: undefined; daysOld: { type: string; minimum: number; description: string; }; workingDirectory: { type: string; }; }; }; } | { name: string; description: string; inputSchema: { required?: undefined; type: string; properties: { section?: undefined; memory?: undefined; merge?: undefined; category?: undefined; directive?: undefined; priority?: undefined; context?: undefined; content?: undefined; daysOld?: undefined; workingDirectory: { type: string; }; }; }; })[]; export declare function handleMemoryToolCall(request: { params: { name: string; arguments?: Record; }; }): Promise<{ content: { type: 'text'; text: string; }[]; isError: boolean; } | { content: { type: 'text'; text: string; }[]; }>; //# sourceMappingURL=memory-server.d.ts.map