Linear MCP Server

linear_create_issue

Create a new Linear issue.

Args: title: Issue title team_id: Team ID to create issue in description: Issue description (markdown supported) priority: Priority level (1=urgent, 4=low) status: Initial status name

Input Schema

NameRequiredDescriptionDefault
descriptionNo
priorityNo
statusNo
team_idYes
titleYes

Input Schema (JSON Schema)

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