Linear

by tacticlaunch
Verified

linear_updateProject

Update an existing project in Linear

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew description of the project (Markdown supported)
idYesID of the project to update
nameNoNew name of the project
stateNoNew state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled')

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "New description of the project (Markdown supported)", "type": "string" }, "id": { "description": "ID of the project to update", "type": "string" }, "name": { "description": "New name of the project", "type": "string" }, "state": { "description": "New state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled')", "type": "string" } }, "required": [ "id" ], "type": "object" }