{
  "$schema": "https://webmcp.org/schemas/v1/webmcp.json",
  "name": "ShivJayanti WebMCP Agentic Integration",
  "description": "Web Model Context Protocol tools and schemas for ShivJayanti.com historical portal",
  "tools": [
    {
      "name": "ask_shivaji_ai",
      "description": "Ask historical questions about Chhatrapati Shivaji Maharaj and Maratha history",
      "parameters": {
        "type": "object",
        "properties": {
          "question": {
            "type": "string",
            "description": "Question about Maratha history, forts, battles, or leadership"
          }
        },
        "required": ["question"]
      },
      "endpoint": "/api/ask",
      "method": "POST"
    },
    {
      "name": "find_dhol_tasha_pathak",
      "description": "Search Dhol Tasha Pathaks in Pune and Maharashtra by name or area",
      "parameters": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Pathak name or area (e.g., Ramanbaug, Sadashiv Peth, Narayan Peth)"
          }
        }
      },
      "endpoint": "/dhol-tasha-pathak",
      "method": "GET"
    },
    {
      "name": "search_forts",
      "description": "Search Maratha hill and sea forts across Maharashtra",
      "parameters": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Fort name (e.g., Raigad, Rajgad, Pratapgad, Sinhagad)"
          }
        }
      },
      "endpoint": "/forts",
      "method": "GET"
    },
    {
      "name": "subscribe_newsletter",
      "description": "Subscribe email address to ShivJayanti historical updates and event alerts",
      "parameters": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Subscriber email address"
          }
        },
        "required": ["email"]
      },
      "endpoint": "/api/subscribe",
      "method": "POST"
    }
  ]
}
