cache_delete
Remove specific keys from the cache to manage and optimize storage. Specify the key and optional namespace for precise deletion in MCP workflows.
Instructions
Delete a key from the cache
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Cache key to delete | |
namespace | No | Optional namespace | default |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Cache key to delete",
"type": "string"
},
"namespace": {
"default": "default",
"description": "Optional namespace",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}