Linear MCP Server

get_projects

Get a list of Linear projects with optional name filtering and pagination

Input Schema

NameRequiredDescriptionDefault
afterNoCursor for pagination. Use the endCursor from a previous response to fetch the next page
firstNoNumber of items to return (default: 50, max: 100)
includeArchivedNoWhether to include archived projects (default: true)
nameFilterNoOptional filter to search by project name

Input Schema (JSON Schema)

{ "properties": { "after": { "description": "Cursor for pagination. Use the endCursor from a previous response to fetch the next page", "type": "string" }, "first": { "default": 50, "description": "Number of items to return (default: 50, max: 100)", "type": "number" }, "includeArchived": { "default": true, "description": "Whether to include archived projects (default: true)", "type": "boolean" }, "nameFilter": { "description": "Optional filter to search by project name", "type": "string" } }, "required": [], "type": "object" }