{
  "tools": [
    {
      "name": "interpretDream",
      "description": "Analyze and interpret a dream using AI based on classical Islamic interpretation frameworks (Ibn Sirin & Nabulsi) and modern psychological models (Freud & Jung).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "dreamText": {
            "type": "string",
            "description": "The full description of the dream to analyze."
          },
          "language": {
            "type": "string",
            "description": "Output language code ('ar' for Arabic, 'en' for English, 'tr' for Turkish).",
            "enum": ["ar", "en", "tr"]
          }
        },
        "required": ["dreamText"]
      }
    },
    {
      "name": "searchArticles",
      "description": "Search the articles library for specific dream symbols or themes (e.g. snakes, teeth, death).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Search keyword or symbol name."
          }
        },
        "required": ["query"]
      }
    }
  ]
}
