vrchat_get_notifications
Retrieve a list of VRChat notifications, including friend requests and user updates, by specifying filters such as type, date, and visibility. Enables efficient notification management via the VRChat MCP Server.
Instructions
Retrieve a list of VRChat notifications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Only return notifications sent after this Date. Ignored if type is "friendRequest". | |
hidden | No | Whether to return hidden or non-hidden notifications. True only allowed on type "friendRequest". | |
n | No | The number of objects to return. Default: 60, Max: 100 | |
offset | No | A zero-based offset from the default object sorting from where to start. | |
sent | No | Return notifications sent by the user. Must be false or omitted. | |
type | No | Only send notifications of this type. Use "all" for all types. This parameter no longer does anything and is deprecated. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"after": {
"description": "Only return notifications sent after this Date. Ignored if type is \"friendRequest\".",
"type": "string"
},
"hidden": {
"description": "Whether to return hidden or non-hidden notifications. True only allowed on type \"friendRequest\".",
"type": "boolean"
},
"n": {
"description": "The number of objects to return. Default: 60, Max: 100",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "A zero-based offset from the default object sorting from where to start.",
"minimum": 0,
"type": "number"
},
"sent": {
"description": "Return notifications sent by the user. Must be false or omitted.",
"type": "boolean"
},
"type": {
"description": "Only send notifications of this type. Use \"all\" for all types. This parameter no longer does anything and is deprecated.",
"type": "string"
}
},
"type": "object"
}