find_project_by_name
Search for WeWork projects by name with customizable similarity threshold to retrieve the most relevant project details from the MCP server.
Instructions
Tìm dự án theo tên với độ tương đồng
Args:
project_name: Tên dự án cần tìm
threshold: Ngưỡng tương đồng tối thiểu (default: 0.3)
Returns:
Thông tin dự án phù hợp nhất
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
threshold | No |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
},
"threshold": {
"default": 0.3,
"title": "Threshold",
"type": "number"
}
},
"required": [
"project_name"
],
"title": "find_project_by_nameArguments",
"type": "object"
}