Skip to main content
Check if a project is in the current user’s favorites

Tool details

FieldValue
Nameis_favorite
GroupFavorites

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    }
  },
  "required": [
    "project_reference"
  ],
  "additionalProperties": false,
  "description": "Input schema for the is_favorite tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "is_favorite": {
      "type": "boolean",
      "description": "The is favorite associated with this tool result."
    },
    "project_id": {
      "type": "string",
      "description": "Project identifier associated with this result."
    }
  },
  "required": [
    "is_favorite",
    "project_id"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the is_favorite tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}