gitlab_get_issue_notes
Retrieve comments and notes on a GitLab issue using its project ID and issue IID. Filter and sort results by creation or update date.
Instructions
Get issue notes/comments by project_id + issue_iid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | GitLab project ID. Omit this field unless the user explicitly provided a value. When omitted, the current runtime config value is used (WORKFLOW_ISSUE_PROJECT_ID overrides the built-in default when configured). If the runtime config is still unset, the tool returns a missing-parameter error. Do not infer or auto-generate this value. | |
| issue_iid | No | Issue IID (internal ID). | |
| sort | No | Sort order. | |
| order_by | No | Field used for ordering. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | Whether the tool call succeeded. | |
| tool | Yes | Tool name. | |
| data | No | GitLab issue notes list. | |
| error_type | No | Error type when ok=false. | |
| message | No | Error message when ok=false. |