vrchat_add_favorite
Add a favorite world, friend, or avatar to VRChat with specific tags for grouping. Simplify managing favorites using the VRChat MCP Server.
Instructions
Add a new favorite.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
favoriteId | Yes | Must be either AvatarID, WorldID or UserID | |
tags | Yes | Tags indicate which group this favorite belongs to. Adding multiple groups makes it show up in all. Removing it from one in that case removes it from all. | |
type | Yes | FavoriteType. Default: friend, Allowed: world | friend | avatar |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"favoriteId": {
"description": "Must be either AvatarID, WorldID or UserID",
"minLength": 1,
"type": "string"
},
"tags": {
"description": "Tags indicate which group this favorite belongs to. Adding multiple groups makes it show up in all. Removing it from one in that case removes it from all.",
"items": {
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array"
},
"type": {
"description": "FavoriteType. Default: friend, Allowed: world | friend | avatar",
"enum": [
"world",
"friend",
"avatar"
],
"type": "string"
}
},
"required": [
"type",
"favoriteId",
"tags"
],
"type": "object"
}