VRChat MCP Server

by sawa-zen
Verified

vrchat_search_avatars

Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other people's avatars.

Input Schema

NameRequiredDescriptionDefault
featuredNo
maxUnityVersionNo
minUnityVersionNo
nNo
notagNo
offsetNo
orderNo
platformNo
releaseStatusNo
sortNo
tagNo
userNo
userIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "featured": { "type": "boolean" }, "maxUnityVersion": { "type": "string" }, "minUnityVersion": { "type": "string" }, "n": { "maximum": 100, "minimum": 1, "type": "number" }, "notag": { "type": "string" }, "offset": { "minimum": 0, "type": "number" }, "order": { "enum": [ "ascending", "descending" ], "type": "string" }, "platform": { "type": "string" }, "releaseStatus": { "enum": [ "public", "private", "hidden", "all" ], "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" }