{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "name": "Today Panchang WebMCP Tools",
  "description": "WebMCP AI Agent Tools and API manifest for TodayPanchang.in and Hindu Calendar Android App",
  "tools": [
    {
      "name": "get_today_panchang",
      "description": "Calculate real-time high-precision Today Panchang, Tithi, Nakshatra, Rahu Kaal, and Shubh Muhurta for any city.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "city": { "type": "string", "description": "City name e.g. Mumbai, Delhi, Ujjain" },
          "date": { "type": "string", "description": "Date in YYYY-MM-DD format" },
          "lang": { "type": "string", "enum": ["en", "hi"], "description": "Language" }
        },
        "required": ["city"]
      }
    },
    {
      "name": "get_shubh_muhurta",
      "description": "Find auspicious dates and timings for Marriage (Vivah), Griha Pravesh, Vehicle Purchase, and Naming Ceremony.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "muhurta_type": { "type": "string", "enum": ["vivah", "grihaPravesh", "vehiclePurchase", "mundan", "namkaran"] },
          "city": { "type": "string", "description": "City name" }
        },
        "required": ["muhurta_type"]
      }
    },
    {
      "name": "download_android_app",
      "description": "Get the official ad-free 15MB Hindu Calendar Android App download link on Google Play Store.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
