delete_issue_link
Remove a link between two issues in GitLab by specifying the project, issue, and link ID to disconnect related issues.
Instructions
Delete an issue link
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of a project's issue | |
| issue_link_id | Yes | The ID of an issue relationship |
Implementation Reference
- schemas.ts:1067-1071 (schema)Zod input schema for the 'delete_issue_link' tool. Defines required parameters: project_id (string), issue_iid (number), issue_link_id (number). Used for input validation in the MCP tool implementation.export const DeleteIssueLinkSchema = z.object({ project_id: z.string().describe("Project ID or URL-encoded path"), issue_iid: z.number().describe("The internal ID of a project's issue"), issue_link_id: z.number().describe("The ID of an issue relationship"), });