delete_project
Remove a project from the SD Elements MCP Server by specifying its project ID, ensuring clean and efficient project management within the security development lifecycle platform.
Instructions
Delete a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The ID of the project to delete |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The ID of the project to delete",
"minimum": 1,
"type": "integer"
}
},
"required": [
"project_id"
],
"type": "object"
}