VRChat MCP Server

by sawa-zen
Verified

vrchat_create_instance

Create a new instance of a world.

Input Schema

NameRequiredDescriptionDefault
canRequestInviteNo
closedAtNo
groupAccessTypeNo
hardCloseNo
inviteOnlyNo
ownerIdNo
queueEnabledNo
regionNous
roleIdsNo
typeYes
worldIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "canRequestInvite": { "type": "boolean" }, "closedAt": { "type": "string" }, "groupAccessType": { "enum": [ "members", "plus", "public" ], "type": "string" }, "hardClose": { "type": "boolean" }, "inviteOnly": { "type": "boolean" }, "ownerId": { "type": [ "string", "null" ] }, "queueEnabled": { "type": "boolean" }, "region": { "default": "us", "enum": [ "us", "use", "eu", "jp", "unknown" ], "type": "string" }, "roleIds": { "items": { "type": "string" }, "type": "array" }, "type": { "enum": [ "public", "hidden", "friends", "private", "group" ], "type": "string" }, "worldId": { "type": "string" } }, "required": [ "worldId", "type" ], "type": "object" }