vrchat_search_groups
Search VRChat groups by name or shortCode to quickly find specific communities. Specify a query, offset, and number of results for precise group discovery.
Instructions
Search VRChat groups by name or shortCode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
n | No | The number of objects to return | |
offset | No | A zero-based offset from the default object sorting | |
query | Yes | Query to search for, can be either Group Name or Group shortCode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"n": {
"description": "The number of objects to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "A zero-based offset from the default object sorting",
"minimum": 0,
"type": "number"
},
"query": {
"description": "Query to search for, can be either Group Name or Group shortCode",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}