list_issue_discussions
Retrieve discussions and comments for a specific issue in a GitLab project to track conversation history and collaboration.
Instructions
List discussions for an issue in a GitLab project
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of the project issue | |
| page | No | Page number for pagination (default: 1) | |
| per_page | No | Number of items per page (max: 100, default: 20) |
Implementation Reference
- schemas.ts:738-741 (schema)Input schema for the 'list_issue_discussions' tool, defining parameters project_id and issue_iid with pagination options.export const ListIssueDiscussionsSchema = z.object({ project_id: z.string().describe("Project ID or URL-encoded path"), issue_iid: z.number().describe("The internal ID of the project issue"), }).merge(PaginationOptionsSchema);