@@ -207,35 +207,30 @@ docker run -i --rm \
20720713 . ` upload_markdown ` - Upload a file to a GitLab project for use in markdown content
20820814 . ` download_attachment ` - Download an uploaded file from a GitLab project by secret and filename
209209
210- ### Issues Management
211- 15 . ` create_issue ` - Create a new issue in a GitLab project
212- 16 . ` list_issues ` - List issues (default: created by current user only; use scope='all' for all accessible issues)
213- 17 . ` my_issues ` - List issues assigned to the authenticated user (defaults to open issues)
214- 18 . ` get_issue ` - Get details of a specific issue in a GitLab project
215- 19 . ` update_issue ` - Update an issue in a GitLab project
216- 20 . ` delete_issue ` - Delete an issue from a GitLab project
217- 21 . ` list_issue_links ` - List all issue links for a specific issue
218- 22 . ` list_issue_discussions ` - List discussions for an issue in a GitLab project
219- 23 . ` get_issue_link ` - Get a specific issue link
220- 24 . ` create_issue_link ` - Create an issue link between two issues
221- 25 . ` delete_issue_link ` - Delete an issue link
222- 26 . ` create_note ` - Create a new note (comment) to an issue or merge request
223- 27 . ` update_issue_note ` - Modify an existing issue thread note
224- 28 . ` create_issue_note ` - Add a new note to an existing issue thread
210+ ### Issues Management (Legacy - Use Work Items for new projects)
211+ 15 . ` list_issues ` - List issues (default: created by current user only; use scope='all' for all accessible issues)
212+ 16 . ` my_issues ` - List issues assigned to the authenticated user (defaults to open issues)
213+ 17 . ` get_issue ` - Get details of a specific issue in a GitLab project
214+ 18 . ` list_issue_links ` - List all issue links for a specific issue
215+ 19 . ` list_issue_discussions ` - List discussions for an issue in a GitLab project
216+ 20 . ` get_issue_link ` - Get a specific issue link
217+ 21 . ` create_note ` - Create a new note (comment) to an issue or merge request
218+
219+ ** Note:** Issue creation and modification has been migrated to the Work Items GraphQL API. Use ` create_work_item ` and ` update_work_item ` instead.
225220
226221### Merge Requests & Code Review
227- 29 . ` create_merge_request ` - Create a new merge request in a GitLab project
228- 30 . ` list_merge_requests ` - List merge requests in a GitLab project with filtering options
229- 31 . ` get_merge_request ` - Get details of a merge request (Either mergeRequestIid or branchName must be provided)
230- 32 . ` get_merge_request_diffs ` - Get the changes/diffs of a merge request (Either mergeRequestIid or branchName must be provided)
231- 33 . ` list_merge_request_diffs ` - List merge request diffs with pagination support (Either mergeRequestIid or branchName must be provided)
232- 34 . ` get_branch_diffs ` - Get the changes/diffs between two branches or commits in a GitLab project
233- 35 . ` update_merge_request ` - Update a merge request (Either mergeRequestIid or branchName must be provided)
234- 36 . ` merge_merge_request ` - Merge a merge request in a GitLab project
235- 37 . ` create_merge_request_thread ` - Create a new thread on a merge request
236- 38 . ` mr_discussions ` - List discussion items for a merge request
237- 39 . ` update_merge_request_note ` - Modify an existing merge request thread note
238- 40 . ` create_merge_request_note ` - Add a new note to an existing merge request thread
222+ 22 . ` create_merge_request ` - Create a new merge request in a GitLab project
223+ 23 . ` list_merge_requests ` - List merge requests in a GitLab project with filtering options
224+ 24 . ` get_merge_request ` - Get details of a merge request (Either mergeRequestIid or branchName must be provided)
225+ 25 . ` get_merge_request_diffs ` - Get the changes/diffs of a merge request (Either mergeRequestIid or branchName must be provided)
226+ 26 . ` list_merge_request_diffs ` - List merge request diffs with pagination support (Either mergeRequestIid or branchName must be provided)
227+ 27 . ` get_branch_diffs ` - Get the changes/diffs between two branches or commits in a GitLab project
228+ 28 . ` update_merge_request ` - Update a merge request (Either mergeRequestIid or branchName must be provided)
229+ 29 . ` merge_merge_request ` - Merge a merge request in a GitLab project
230+ 30 . ` create_merge_request_thread ` - Create a new thread on a merge request
231+ 31 . ` mr_discussions ` - List discussion items for a merge request
232+ 32 . ` update_merge_request_note ` - Modify an existing merge request thread note
233+ 33 . ` create_merge_request_note ` - Add a new note to an existing merge request thread
239234
240235### Draft Notes Management
24123641 . ` get_draft_note ` - Get a single draft note from a merge request
0 commit comments