Linear MCP Server

linear_search_issues

Search issues with flexible filtering.

Args: query: Text to search in title/description team_id: Filter by team status: Filter by status assignee_id: Filter by assignee labels: Filter by labels priority: Filter by priority estimate: Filter by estimate points include_archived: Include archived issues limit: Max results (default: 10)

Input Schema

NameRequiredDescriptionDefault
assignee_idNo
estimateNo
include_archivedNo
labelsNo
limitNo
priorityNo
queryNo
statusNo
team_idNo

Input Schema (JSON Schema)

{ "properties": { "assignee_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Assignee Id" }, "estimate": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Estimate" }, "include_archived": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "title": "Include Archived" }, "labels": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Labels" }, "limit": { "default": 10, "title": "Limit", "type": "integer" }, "priority": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Priority" }, "query": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Query" }, "status": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Status" }, "team_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Team Id" } }, "title": "linear_search_issuesArguments", "type": "object" }