← WebMCP Directory

Tool tree

vndoc.com

Health & Education
https://vndoc.com/
Vietnamese study materials and educational resources
Explore capabilities

Tools verified

buy_documentAction

Mở trang mua một tài liệu VnDoc 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 VnDoc 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 VnDoc để 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 VnDoc để 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 VnDoc."
      },
      "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 VnDoc 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 VnDoc 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
  }
}