list_project_issues
Retrieve and display a list of project issues from Redmine, filtered by status and limited to a specified number, presented in a table format for easy review and management.
Instructions
列出專案的議題
Args:
project_id: 專案 ID
status_filter: 狀態篩選 ("open", "closed", "all")
limit: 最大回傳數量 (預設 20,最大 100)
Returns:
專案議題列表,以表格格式呈現
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
project_id | Yes | ||
status_filter | No | open |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"status_filter": {
"default": "open",
"title": "Status Filter",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "list_project_issuesArguments",
"type": "object"
}