delete_application_category
Remove a custom application category from the MCP Server for Coroot by specifying the project ID and category name. Built-in categories cannot be deleted.
Instructions
Delete an application category.
Removes a custom application category. Built-in categories cannot be deleted.
Args: project_id: Project ID name: Category name to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}