create_project
Generate and initialize a new project by specifying its name and identifier through the Plane MCP Server. Simplifies project setup for efficient management in AI-driven workflows.
Instructions
Create a new project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | The identifier of the project. This is typically a word of around 5 characters derived from the name of the project in uppercase. | |
name | Yes | The 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"
}