set_avatar
Change to a specific avatar in VRChat using its unique ID, enabling AI-driven avatar control within virtual reality environments through the MCP server.
Instructions
Change to a specific avatar.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
avatar_id | Yes | ID of the avatar to change to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"avatar_id": {
"description": "ID of the avatar to change to",
"type": "string"
}
},
"required": [
"avatar_id"
],
"type": "object"
}