search_employee
Search for employees by name or ID using the MCP API Service. Retrieve relevant results by specifying keywords and setting a maximum result limit for precise queries.
Instructions
Tìm kiếm nhân viên theo tên hoặc mã
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Số lượng kết quả tối đa | |
q | Yes | Từ khóa tìm kiếm (tên/mã nhân viên) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Số lượng kết quả tối đa",
"type": "number"
},
"q": {
"description": "Từ khóa tìm kiếm (tên/mã nhân viên)",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}