Skip to main content
Clear all cached values for a project

Tool details

FieldValue
Nameclear_cache
GroupCache

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "confirm": {
      "type": "boolean",
      "description": "Must be true to confirm clearing all cache"
    }
  },
  "required": [
    "project_reference",
    "confirm"
  ],
  "additionalProperties": false,
  "description": "Input schema for the clear_cache tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "deleted_count": {
      "type": "number",
      "description": "The deleted count associated with this tool result."
    }
  },
  "required": [
    "deleted_count"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the clear_cache tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}