Plane MCP Server

Official

create_project

Initiate a new project by specifying a name and a unique identifier using Plane MCP Server, streamlining project setup in AI-driven systems.

Instructions

Create a new project

Input Schema

NameRequiredDescriptionDefault
identifierYesThe identifier of the project. This is typically a word of around 5 characters derived from the name of the project in uppercase.
nameYesThe name of the project

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "identifier": { "description": "The identifier of the project. This is typically a word of around 5 characters derived from the name of the project in uppercase.", "maxLength": 7, "type": "string" }, "name": { "description": "The name of the project", "type": "string" } }, "required": [ "name", "identifier" ], "type": "object" }
ID: y5g9z3v76n