vrchat_join_group
Add a user to a VRChat group by specifying its unique group ID using the MCP server for direct integration with the VRChat API.
Instructions
Join a VRChat group by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | Must be a valid group ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupId": {
"description": "Must be a valid group ID",
"type": "string"
}
},
"required": [
"groupId"
],
"type": "object"
}