Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get a cached value from a project-scoped cache
| Field | Value |
|---|
| Name | get_cache_value |
| Group | Cache |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 512,
"pattern": "^[a-zA-Z0-9_:.\\-/]+$",
"description": "Cache key"
}
},
"required": [
"project_reference",
"key"
],
"additionalProperties": false,
"description": "Input schema for the get_cache_value tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"value": {
"type": [
"string",
"null"
],
"description": "The value associated with this tool result."
}
},
"required": [
"value"
],
"additionalProperties": false,
"description": "Structured result returned by the get_cache_value tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}