Linear MCP Server

create_issue

Create a new issue in Linear

Input Schema

NameRequiredDescriptionDefault
assigneeIdNoAssignee user ID (optional)
descriptionNoIssue description (markdown supported)
labelsNoLabel IDs to apply (optional)
priorityNoPriority (0-4, optional)
teamIdYesTeam ID
titleYesIssue title

Input Schema (JSON Schema)

{ "properties": { "assigneeId": { "description": "Assignee user ID (optional)", "type": "string" }, "description": { "description": "Issue description (markdown supported)", "type": "string" }, "labels": { "description": "Label IDs to apply (optional)", "items": { "type": "string" }, "type": "array" }, "priority": { "description": "Priority (0-4, optional)", "maximum": 4, "minimum": 0, "type": "number" }, "teamId": { "description": "Team ID", "type": "string" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "title", "teamId" ], "type": "object" }