gemini_getCache
Retrieve metadata for specific cached content resources in the MCP Gemini Server using the unique cache name to access stored content details.
Instructions
Retrieves metadata for a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz').
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cacheName | Yes | Required. The unique name/ID of the cache to retrieve metadata for (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 retrieve metadata for (e.g., 'cachedContents/abc123xyz').",
"minLength": 1,
"pattern": "^cachedContents\\/.+$",
"type": "string"
}
},
"required": [
"cacheName"
],
"type": "object"
}