create_project
Initiate a new project within SD Elements by specifying project details such as name, description, application ID, and phase ID using the SD Elements MCP Server API integration.
Instructions
Create a new project in SD Elements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
application_id | Yes | ID of the application this project belongs to | |
description | No | Project description | |
name | Yes | Project name | |
phase_id | No | ID of the project phase |
Input Schema (JSON Schema)
{
"properties": {
"application_id": {
"description": "ID of the application this project belongs to",
"type": "integer"
},
"description": {
"description": "Project description",
"type": "string"
},
"name": {
"description": "Project name",
"type": "string"
},
"phase_id": {
"description": "ID of the project phase",
"type": "integer"
}
},
"required": [
"name",
"application_id"
],
"type": "object"
}