MCP Gemini Server

by bsmi021
Verified

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

NameRequiredDescriptionDefault
cacheNameYesRequired. 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" }
ID: fakxcprcnk