vrchat_list_favorites
Retrieve a filtered list of VRChat favorites, including worlds, friends, and avatars, with options to set limits, offsets, and tags for precise results.
Instructions
Returns a list of favorites.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
n | No | Number of favorites to return (1-100). Default is 60. | |
offset | No | Skip this many favorites before beginning to return results. | |
tag | No | Filter by tag (e.g., "group_0", "group_1"). | |
type | No | Filter by favorite type ("world", "friend", or "avatar"). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"n": {
"default": 60,
"description": "Number of favorites to return (1-100). Default is 60.",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Skip this many favorites before beginning to return results.",
"minimum": 0,
"type": "number"
},
"tag": {
"description": "Filter by tag (e.g., \"group_0\", \"group_1\").",
"type": "string"
},
"type": {
"description": "Filter by favorite type (\"world\", \"friend\", or \"avatar\").",
"type": "string"
}
},
"type": "object"
}