delete_project
Remove a project and all its related tasks from the taskqueue-mcp server by specifying the project ID to maintain organized task management.
Instructions
Delete a project and all its associated tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID of the project to delete (e.g., proj-1). |
Input Schema (JSON Schema)
{
"properties": {
"projectId": {
"description": "The ID of the project to delete (e.g., proj-1).",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}