cache_get
Retrieve cached data by specifying a key using this tool. Optionally, use a namespace to avoid key conflicts. Returns null if the key is not found or expired.
Instructions
Get a value from the cache by key. Returns null if not found or expired.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Cache key to retrieve | |
namespace | No | Optional namespace to prevent key collisions | default |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Cache key to retrieve",
"type": "string"
},
"namespace": {
"default": "default",
"description": "Optional namespace to prevent key collisions",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}