delete-routine
Remove a specific routine by its exact name from the Routine MCP server. Confirms user intent before deletion and verifies the correct routine by referencing the list of all routines.
Instructions
Delete a routine by name. Always confirm with user that they want to delete it. User may supply a name that's not exactly as how it's stored. Use the load-routines tool to get the list of all routines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Exact name of the routine to be deleted. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Exact name of the routine to be deleted.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}