Linear MCP Server

create-issue

Create a new Linear issue

Input Schema

NameRequiredDescriptionDefault
assigneeIdNoAssignee ID
descriptionNoIssue description
estimateNoIssue estimate
labelIdsNoLabel IDs
priorityNoIssue priority (0: No priority, 1: Urgent, 2: High, 3: Medium, 4: Low)
stateIdNoState ID
teamIdYesTeam ID
titleYesIssue title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assigneeId": { "description": "Assignee ID", "type": "string" }, "description": { "description": "Issue description", "type": "string" }, "estimate": { "description": "Issue estimate", "type": "number" }, "labelIds": { "description": "Label IDs", "items": { "type": "string" }, "type": "array" }, "priority": { "description": "Issue priority (0: No priority, 1: Urgent, 2: High, 3: Medium, 4: Low)", "maximum": 4, "minimum": 0, "type": "number" }, "stateId": { "description": "State ID", "type": "string" }, "teamId": { "description": "Team ID", "type": "string" }, "title": { "description": "Issue title", "type": "string" } }, "required": [ "title", "teamId" ], "type": "object" }

You must be authenticated.

Other Tools