← WebMCP Directory

Tool tree

download.vn

Health & Education
https://download.vn/
Vietnamese teaching materials and study resources
Explore capabilities

Tools verified

buy_documentAction

Mở trang mua một tài liệu DownLoad theo postId để người dùng xem giá và hoàn tất thanh toán. Lấy postId từ tài liệu trên website, không tự suy đoán. Tool không xác nhận thanh toán thành công.

View tool JSON
{
  "name": "buy_document",
  "kind": "act",
  "impl": "imperative",
  "description": "Mở trang mua một tài liệu DownLoad theo postId để người dùng xem giá và hoàn tất thanh toán. Lấy postId từ tài liệu trên website, không tự suy đoán. Tool không xác nhận thanh toán thành công.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "postId": {
        "type": "integer",
        "minimum": 1,
        "maximum": 2147483647,
        "description": "Mã bài viết/tài liệu cần mua."
      }
    },
    "required": [
      "postId"
    ],
    "additionalProperties": false
  }
}
buy_packageAction

Mở trang mua gói DownLoad để người dùng xem giá, chọn gói và hoàn tất thanh toán. Không có productId thì mở bảng gói. Chỉ dùng mã sản phẩm và mã giá lấy từ website, không tự suy đoán. Tool không xác nhận thanh toán thành công.

View tool JSON
{
  "name": "buy_package",
  "kind": "act",
  "impl": "imperative",
  "description": "Mở trang mua gói DownLoad để người dùng xem giá, chọn gói và hoàn tất thanh toán. Không có productId thì mở bảng gói. Chỉ dùng mã sản phẩm và mã giá lấy từ website, không tự suy đoán. Tool không xác nhận thanh toán thành công.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "productId": {
        "type": "integer",
        "minimum": 1,
        "maximum": 2147483647,
        "description": "Mã sản phẩm gói trên DownLoad."
      },
      "priceId": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200,
        "description": "Mã mức giá của gói đã chọn, cần đi kèm productId."
      }
    },
    "additionalProperties": false
  }
}
searchAnswer

Tìm tài liệu, đề thi, bài giải trên DownLoad bằng từ khóa. Điều hướng đến trang kết quả tìm kiếm.

View tool JSON
{
  "name": "search",
  "kind": "answer",
  "impl": "imperative",
  "description": "Tìm tài liệu, đề thi, bài giải trên DownLoad bằng từ khóa. Điều hướng đến trang kết quả tìm kiếm.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "minLength": 1,
        "maxLength": 500,
        "description": "Từ khóa cần tìm."
      }
    },
    "required": [
      "query"
    ],
    "additionalProperties": false
  }
}