search_projects
Search for WeWork projects by name using specified text and retrieve a list of matching projects, limited to a customizable number of results.
Instructions
Tìm kiếm dự án theo tên
Args:
search_text: Text để tìm kiếm trong tên dự án
limit: Số lượng kết quả tối đa (default: 10)
Returns:
Danh sách các dự án phù hợp
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
search_text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"search_text": {
"title": "Search Text",
"type": "string"
}
},
"required": [
"search_text"
],
"title": "search_projectsArguments",
"type": "object"
}