delete-toolset
Remove a specific toolset configuration from the hypertool-mcp server by providing its name and confirming the deletion to ensure precision and safety.
Instructions
Delete a saved toolset configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | Confirm deletion (required to actually delete) | |
name | Yes | Name of the toolset to delete |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"confirm": {
"description": "Confirm deletion (required to actually delete)",
"type": "boolean"
},
"name": {
"description": "Name of the toolset to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}