vrchat_get_instance
Retrieve detailed information about a specific VRChat instance using world and instance IDs, including member data if you are the instance owner, through the VRChat MCP Server.
Instructions
Get information about a specific instance. Note: Detailed information about instance members is only available if you are the instance owner.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceId | Yes | Must be a valid instance ID. | |
worldId | Yes | Must be a valid world ID. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"instanceId": {
"description": "Must be a valid instance ID.",
"type": "string"
},
"worldId": {
"description": "Must be a valid world ID.",
"type": "string"
}
},
"required": [
"worldId",
"instanceId"
],
"type": "object"
}