gemini_deleteCache
Remove cached content resources from the MCP Gemini Server by specifying the unique cache name, ensuring efficient cache management and storage optimization.
Instructions
Deletes a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). Returns a success confirmation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheName | Yes | Required. The unique name/ID of the cache to delete (e.g., 'cachedContents/abc123xyz'). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cacheName": {
"description": "Required. The unique name/ID of the cache to delete (e.g., 'cachedContents/abc123xyz').",
"minLength": 1,
"pattern": "^cachedContents\\/.+$",
"type": "string"
}
},
"required": [
"cacheName"
],
"type": "object"
}