move_avatar
Direct avatar movement in VRChat by specifying direction (forward, backward, left, right) and duration using the VRChat MCP OSC server.
Instructions
Move the avatar in a specific direction.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | Direction to move | |
duration | No | Duration in seconds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"direction": {
"description": "Direction to move",
"enum": [
"forward",
"backward",
"left",
"right"
],
"type": "string"
},
"duration": {
"default": 1,
"description": "Duration in seconds",
"type": "number"
}
},
"required": [
"direction"
],
"type": "object"
}