cldkctl_update_project
Update project descriptions in the MCP cldkctl Server by specifying the project ID and new description for efficient project management.
Instructions
Call the cldkctl_update_project endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | New project description | |
project_id | Yes | ID of the project |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "New project description",
"type": "string"
},
"project_id": {
"description": "ID of the project",
"type": "string"
}
},
"required": [
"project_id",
"description"
],
"type": "object"
}