Skip to main content
List cache keys for a project with optional pattern filtering and pagination

Tool details

FieldValue
Namelist_cache_keys
GroupCache

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "pattern": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512,
      "pattern": "^[a-zA-Z0-9_:.*\\-/]+$",
      "description": "Pattern filter (e.g., \"transform:*\")"
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor"
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 1000,
      "description": "Max keys to return (1-1000, default: 100)"
    }
  },
  "required": [
    "project_reference"
  ],
  "additionalProperties": false,
  "description": "Input schema for the list_cache_keys tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "One key item associated with this tool result."
      },
      "description": "List of keys associated with this tool result."
    },
    "page_info": {
      "type": "object",
      "properties": {
        "has_next_page": {
          "type": "boolean",
          "description": "The has next page associated with this tool result."
        },
        "next_cursor": {
          "type": [
            "string",
            "null"
          ],
          "description": "The next cursor associated with this tool result."
        }
      },
      "required": [
        "has_next_page",
        "next_cursor"
      ],
      "additionalProperties": false,
      "description": "Pagination cursor values for traversing the result set."
    }
  },
  "required": [
    "keys",
    "page_info"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the list_cache_keys tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}