Skip to main content
List all favorite projects for the current user

Tool details

FieldValue
Namelist_favorites
GroupFavorites

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "description": "Input schema for the list_favorites tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "favorites": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique identifier for the returned record."
          },
          "user_id": {
            "type": "string",
            "description": "The user id associated with this tool result."
          },
          "project_id": {
            "type": "string",
            "description": "Project identifier associated with this result."
          },
          "created_at": {
            "type": "string",
            "description": "Creation timestamp in ISO 8601 format."
          },
          "project": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "Unique identifier for the returned record."
              },
              "name": {
                "type": "string",
                "description": "Human-readable name for the returned record."
              },
              "slug": {
                "type": "string",
                "description": "The slug associated with this tool result."
              },
              "updated_at": {
                "type": "string",
                "description": "Last update timestamp in ISO 8601 format."
              },
              "created_at": {
                "type": "string",
                "description": "Creation timestamp in ISO 8601 format."
              }
            },
            "required": [
              "id",
              "name",
              "slug",
              "updated_at",
              "created_at"
            ],
            "additionalProperties": false,
            "description": "Structured project details associated with this tool result."
          }
        },
        "required": [
          "id",
          "user_id",
          "project_id",
          "created_at",
          "project"
        ],
        "additionalProperties": false,
        "description": "One favorite item associated with this tool result."
      },
      "description": "List of favorites associated with this tool result."
    },
    "favorite_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "One favorite id item associated with this tool result."
      },
      "description": "List of favorite ids associated with this tool result."
    }
  },
  "required": [
    "favorites",
    "favorite_ids"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the list_favorites tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}