[{"name":"memory_query","description":"Search Ghost's persistent memory graph for stored facts, preferences, events, and relationships.","inputSchema":{"type":"object","properties":{"query":{"type":"string","description":"Natural language search query"},"limit":{"type":"integer","default":10},"category":{"type":"string","enum":["fact","preference","event","entity","relationship","all"],"default":"all"}},"required":["query"]}},{"name":"memory_store","description":"Store information in Ghost's persistent memory graph.","inputSchema":{"type":"object","properties":{"content":{"type":"string","description":"The information to remember"},"category":{"type":"string","enum":["fact","preference","event","entity","relationship"]},"importance":{"type":"number","minimum":0,"maximum":1}},"required":["content"]}},{"name":"conversation_send","description":"Send a message to Ghost and receive a response using the full model routing stack.","inputSchema":{"type":"object","properties":{"message":{"type":"string"},"stream":{"type":"boolean","default":true},"max_tokens":{"type":"integer","default":1024}},"required":["message"]}},{"name":"voice_speak","description":"Synthesize text to speech using Ghost's Kokoro neural TTS engine.","inputSchema":{"type":"object","properties":{"text":{"type":"string"},"voice":{"type":"string","default":"af_heart","enum":["af_heart","af_bella","am_adam","am_michael"]},"speed":{"type":"number","default":1,"minimum":0.5,"maximum":2}},"required":["text"]}},{"name":"proactive_check","description":"Trigger Ghost's proactive intelligence to scan for relevant suggestions.","inputSchema":{"type":"object","properties":{"context":{"type":"string"},"max_suggestions":{"type":"integer","default":5}}}},{"name":"model_info","description":"Get information about Ghost's current model tier, device capabilities, and inference metrics.","inputSchema":{"type":"object","properties":{}}}]