vrchat_send_friend_request
Send a friend request to a VRChat user by specifying their userId, enabling connection and interaction within the VRChat platform through the MCP Server.
Instructions
Send a friend request to another user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
userId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"userId": {
"minLength": 1,
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}