Linear MCP Server

linear_update_issue

Update an existing Linear issue.

Args: id: Issue ID to update title: New title description: New description priority: New priority (1=urgent, 4=low) status: New status name

Input Schema

NameRequiredDescriptionDefault
descriptionNo
idYes
priorityNo
statusNo
titleNo

Input Schema (JSON Schema)

{ "properties": { "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Description" }, "id": { "title": "Id", "type": "string" }, "priority": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Priority" }, "status": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Status" }, "title": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Title" } }, "required": [ "id" ], "title": "linear_update_issueArguments", "type": "object" }