vrchat_search_worlds
Search and filter VRChat worlds by name, tags, popularity, or user-specific criteria. Sort and paginate results to discover featured, trending, or custom worlds efficiently.
Instructions
Search and list worlds by query filters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featured | No | Return featured worlds only | |
n | No | Number of worlds to return, from 1 to 100 | |
notag | No | Exclude worlds with a specific tag | |
offset | No | Offset for pagination, minimum 0 | |
order | No | Sort results in ascending or descending order | |
search | No | Search worlds by name or other text fields | |
sort | No | Sort worlds by a specific criteria | |
tag | No | Filter worlds by a specific tag | |
user | No | Filter by the specified user, currently only supports "me" to see your own worlds | |
userId | No | Filter worlds by a specific VRChat user ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featured": {
"description": "Return featured worlds only",
"type": "boolean"
},
"n": {
"description": "Number of worlds to return, from 1 to 100",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"notag": {
"description": "Exclude worlds with a specific tag",
"type": "string"
},
"offset": {
"description": "Offset for pagination, minimum 0",
"minimum": 0,
"type": "number"
},
"order": {
"description": "Sort results in ascending or descending order",
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"search": {
"description": "Search worlds by name or other text fields",
"type": "string"
},
"sort": {
"description": "Sort worlds by a specific criteria",
"enum": [
"popularity",
"heat",
"trust",
"shuffle",
"random",
"favorites",
"reportScore",
"reportCount",
"publicationDate",
"labsPublicationDate",
"created",
"_created_at",
"updated",
"_updated_at",
"order",
"relevance",
"magic",
"name"
],
"type": "string"
},
"tag": {
"description": "Filter worlds by a specific tag",
"type": "string"
},
"user": {
"description": "Filter by the specified user, currently only supports \"me\" to see your own worlds",
"enum": [
"me"
],
"type": "string"
},
"userId": {
"description": "Filter worlds by a specific VRChat user ID",
"type": "string"
}
},
"type": "object"
}