delete-template
Remove specific templates from the Novita MCP Server by specifying the template ID. Ensure accuracy using the get-template
tool to verify the ID before deletion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
templateId | Yes | ID of the template to delete. Please ensure it exists before deleting. Before calling the MCP tool, please show me the name to help identify it. You can use the `get-template` tool to check the ID if needed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"templateId": {
"description": "ID of the template to delete. Please ensure it exists before deleting. Before calling the MCP tool, please show me the name to help identify it. You can use the `get-template` tool to check the ID if needed.",
"minLength": 1,
"type": "string"
}
},
"required": [
"templateId"
],
"type": "object"
}