delete_issue
Remove issues from GitLab projects by specifying project ID and issue internal ID to manage project workflows.
Instructions
Delete an issue from a GitLab project
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID or URL-encoded path | |
| issue_iid | No | The internal ID of the project issue |
Implementation Reference
- schemas.ts:1353-1356 (schema)Input schema definition for the 'delete_issue' MCP tool, specifying required parameters: project_id and issue_iid for deleting a GitLab issue.export const DeleteIssueSchema = z.object({ project_id: z.coerce.string().describe("Project ID or URL-encoded path"), issue_iid: z.coerce.string().describe("The internal ID of the project issue"), });