Linear

by tacticlaunch
Verified

linear_createProject

Facilitate the creation of a new project in Linear by specifying the project name, description, initial state, and associated team IDs. Streamline project setup and organization directly within the Linear platform.

Instructions

Create a new project in Linear

Input Schema

NameRequiredDescriptionDefault
descriptionNoDescription of the project (Markdown supported)
nameYesName of the project
stateNoInitial state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled')
teamIdsYesIDs of the teams this project belongs to

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Description of the project (Markdown supported)", "type": "string" }, "name": { "description": "Name of the project", "type": "string" }, "state": { "description": "Initial state of the project (e.g., 'planned', 'started', 'paused', 'completed', 'canceled')", "type": "string" }, "teamIds": { "description": "IDs of the teams this project belongs to", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "teamIds" ], "type": "object" }
ID: r0jy9qy35n