get_my_issues
Retrieve a filtered list of issues assigned to you on the Redmine project management system. Specify issue status and limit results for efficient task tracking and prioritization.
Instructions
取得指派給我的議題列表
Args:
status_filter: 狀態篩選 ("open", "closed", "all")
limit: 最大回傳數量 (預設 20,最大 100)
Returns:
我的議題列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
status_filter | No | open |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"status_filter": {
"default": "open",
"title": "Status Filter",
"type": "string"
}
},
"title": "get_my_issuesArguments",
"type": "object"
}