{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "name": "Ez-Kosher MCP Server",
  "description": "Allows AI agents to query verified kosher restaurants, groceries, bakeries, cafes, delivery services, and certification details in New York.",
  "version": "1.0.0",
  "homepage": "https://ez-kosher.com/",
  "publisher": "Ez-Kosher",
  "capabilities": {
    "tools": [
      {
        "name": "search_kosher_establishments",
        "description": "Filter and search kosher establishments by keyword, type (Restaurant, Grocery, Bakery, Cafe, Delivery), city, certification agency, or Pas Yisroel requirement.",
        "parameters": {
          "type": "object",
          "properties": {
            "query": { "type": "string", "description": "Search term (name, cuisine, item, or neighborhood)" },
            "type": { "type": "string", "enum": ["Restaurant", "Grocery", "Bakery", "Cafe", "Delivery"] },
            "city": { "type": "string" },
            "certification": { "type": "string", "description": "e.g. OU, OK, CHK, VHQ, Mehadrin" },
            "pasYisroel": { "type": "boolean" }
          }
        }
      },
      {
        "name": "get_kosher_certifications",
        "description": "Get list of kosher certifying organizations and rabbinical bodies.",
        "parameters": {
          "type": "object",
          "properties": {}
        }
      }
    ],
    "resources": [
      {
        "uri": "https://agent.ez-kosher.com/data.json",
        "name": "Raw Establishment Data",
        "mimeType": "application/json"
      },
      {
        "uri": "https://agent.ez-kosher.com/llms-full.txt",
        "name": "Full Markdown Dataset",
        "mimeType": "text/plain"
      }
    ]
  }
}
