Tool details
| Field | Value |
|---|---|
| Name | create_favorite |
| Group | Favorites |
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 create_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"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_name": {
"type": "string",
"description": "The project name associated with this tool result."
},
"project_slug": {
"type": "string",
"description": "The project slug associated with this tool result."
}
},
"required": [
"id",
"user_id",
"project_id",
"created_at",
"project_name",
"project_slug"
],
"additionalProperties": false,
"description": "Structured result returned by the create_favorite tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}