vrchat_list_favorited_worlds
Retrieve and organize favorited worlds in VRChat using customizable filters, sorting options, and result limits through the VRChat MCP Server.
Instructions
List favorited worlds by query filters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| featured | No | Filters on featured results | |
| n | No | The number of objects to return, min 1, max 100 | |
| order | No | Sort results in ascending or descending order | |
| sort | No | The sort order of the results |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featured": {
"description": "Filters on featured results",
"type": "boolean"
},
"n": {
"description": "The number of objects to return, min 1, max 100",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"order": {
"description": "Sort results in ascending or descending order",
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"sort": {
"description": "The sort order of the results",
"enum": [
"popularity",
"heat",
"trust",
"shuffle",
"random",
"favorites",
"reportScore",
"reportCount",
"publicationDate",
"labsPublicationDate",
"created",
"_created_at",
"updated",
"_updated_at",
"order",
"relevance",
"magic",
"name"
],
"type": "string"
}
},
"type": "object"
}