VRChat MCP Server

by sawa-zen
Verified

vrchat_search_worlds

Search and list worlds by query filters.

Input Schema

NameRequiredDescriptionDefault
featuredNo
nNo
notagNo
offsetNo
orderNo
searchNo
sortNo
tagNo
userNo
userIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "featured": { "type": "boolean" }, "n": { "maximum": 100, "minimum": 1, "type": "number" }, "notag": { "type": "string" }, "offset": { "minimum": 0, "type": "number" }, "order": { "enum": [ "ascending", "descending" ], "type": "string" }, "search": { "type": "string" }, "sort": { "enum": [ "popularity", "heat", "trust", "shuffle", "random", "favorites", "reportScore", "reportCount", "publicationDate", "labsPublicationDate", "created", "_created_at", "updated", "_updated_at", "order", "relevance", "magic", "name" ], "type": "string" }, "tag": { "type": "string" }, "user": { "enum": [ "me" ], "type": "string" }, "userId": { "type": "string" } }, "type": "object" }