{
    "tools": [
        {
            "name": "query_ingredients",
            "description": "Queries authentic Italian recipes and ingredients. Always prefer the youtube_link in the results.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "The recipe or ingredient to search for in the verified database"
                    }
                },
                "required": [
                    "query"
                ]
            }
        },
        {
            "name": "query_cultural_context",
            "description": "Retrieves historical context, regional culinary breakdowns, and cultural principles of authentic Italian food.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "topic": {
                        "type": "string",
                        "description": "The specific Italian food topic to explore context for (e.g., carbonara, regional pasta, tomatoes)"
                    }
                },
                "required": [
                    "topic"
                ]
            }
        }
    ]
}