/** * MCP Memory Tools * * Tool definitions for the memory MCP server. * Includes __IMPORTANT meta-tool that teaches LLMs the 3-layer workflow. * * @module @agentkits/memory/mcp/tools */ import type { MCPTool } from './types.js'; /** * Search strategy tips appended to search/timeline results. * Guides LLM through progressive disclosure workflow. */ export declare const SEARCH_STRATEGY_TIPS = "\n---\n**Memory Search Strategy (3-Layer Progressive Disclosure):**\n1. `memory_search(query)` - Get index with IDs (~50 tokens/result)\n2. `memory_timeline(anchor: \"ID\")` - Get context around interesting results\n3. `memory_details(ids: [\"ID1\", \"ID2\"])` - Fetch full content ONLY for filtered IDs\n\n**Tips:** Filter by category, dateStart/dateEnd, or orderBy for precise results.\nNEVER fetch full details without filtering first \u2014 saves ~87% tokens."; /** * All available memory tools */ export declare const MEMORY_TOOLS: MCPTool[]; export default MEMORY_TOOLS; //# sourceMappingURL=tools.d.ts.map