{
  "name": "EduVivo Agent Tools",
  "version": "1.0.0",
  "description": "MCP tool capabilities for EduVivo online academy platform.",
  "tools": [
    {
      "name": "search_courses",
      "description": "Search available courses by keyword or category",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Course search term or keyword"
          }
        },
        "required": [
          "query"
        ]
      },
      "endpoint": "https://eduvivo.net/courses"
    },
    {
      "name": "get_course_details",
      "description": "Get comprehensive curriculum, pricing, and instructor details for a specific course",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "The unique slug or ID of the course"
          }
        },
        "required": [
          "slug"
        ]
      },
      "endpoint": "https://eduvivo.net/courses/{slug}"
    },
    {
      "name": "get_academy_info",
      "description": "Get academy description, contact information, and operating policies",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://eduvivo.net/llms.txt"
    }
  ]
}