Skip to main content
Get a cached value from a project-scoped cache

Tool details

FieldValue
Nameget_cache_value
GroupCache

Playground

Input schema

Input schema
{
  "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

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#"
}