← WebMCP Directory

Tool tree

99pandit.com

Travel & Events
https://99pandit.com/
Online booking for Hindu priests and religious ceremonies
Explore capabilities

Tools verified

book_panditAction

Open the 99Pandit booking form pre-filled with the user's puja and date. For Indian users also pass city. The user completes their phone OTP and submits the form. Use this after the user has confirmed they want to book.

View tool JSON
{
  "name": "book_pandit",
  "kind": "act",
  "impl": "imperative",
  "description": "Open the 99Pandit booking form pre-filled with the user's puja and date. For Indian users also pass city. The user completes their phone OTP and submits the form. Use this after the user has confirmed they want to book.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "puja_name": {
        "type": "string",
        "description": "Name of the puja. Example: Satyanarayan Puja, Griha Pravesh, Ganesh Puja."
      },
      "city": {
        "type": "string",
        "description": "City where the puja will be performed. Only needed for Indian bookings. Example: Pune, Delhi, Mumbai."
      },
      "date": {
        "type": "string",
        "description": "Preferred date in YYYY-MM-DD format."
      }
    },
    "required": [
      "puja_name"
    ]
  }
}
get_city_servicesAnswer

Get a list of puja and religious ceremony services available in a specific Indian city on 99Pandit.

View tool JSON
{
  "name": "get_city_services",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get a list of puja and religious ceremony services available in a specific Indian city on 99Pandit.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "city": {
        "type": "string",
        "description": "City name. Examples: Pune, Delhi, Mumbai, Bangalore, Hyderabad, Chennai, Kolkata, Jaipur, Varanasi."
      }
    },
    "required": [
      "city"
    ]
  }
}
get_puja_detailsAnswer

Get detailed information about a specific puja — description, price range, duration, and what is included.

View tool JSON
{
  "name": "get_puja_details",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get detailed information about a specific puja — description, price range, duration, and what is included.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "puja_slug": {
        "type": "string",
        "description": "URL slug of the puja. Examples: satyanarayan-puja, griha-pravesh-puja, rudrabhishek-puja, ganesh-puja. Use get_pujas_list first to find the correct slug."
      }
    },
    "required": [
      "puja_slug"
    ]
  }
}
get_pujas_listAnswer

Get a full list of puja and religious ceremony services offered by 99Pandit, grouped by category.

View tool JSON
{
  "name": "get_pujas_list",
  "kind": "answer",
  "impl": "imperative",
  "description": "Get a full list of puja and religious ceremony services offered by 99Pandit, grouped by category.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  }
}
search_pujaAction

Search for pujas and religious ceremonies available on 99Pandit. Returns a list of matching services with name, slug, and category.

View tool JSON
{
  "name": "search_puja",
  "kind": "act",
  "impl": "declarative",
  "description": "Search for pujas and religious ceremonies available on 99Pandit. Returns a list of matching services with name, slug, and category.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Name of the puja or ceremony. Examples: Satyanarayan Puja, Griha Pravesh, Ganesh Puja, Rudrabhishek, Navgraha Puja."
      }
    },
    "required": []
  }
}