search_issues
Search for Redmine issues by keyword in titles or descriptions, filter results by project, and control output with a limit parameter to retrieve relevant project management data efficiently.
Instructions
搜尋議題 (在標題或描述中搜尋關鍵字)
Args:
query: 搜尋關鍵字
project_id: 限制在特定專案中搜尋 (可選)
limit: 最大回傳數量 (預設 10,最大 50)
Returns:
符合搜尋條件的議題列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
project_id | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"project_id": {
"default": null,
"title": "Project Id",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_issuesArguments",
"type": "object"
}