post_message_activity
Send or update messages on AniList via the MCP server. Specify text, recipient, and privacy settings to manage user activities efficiently.
Instructions
[Requires Login] Post a new message activity or update an existing one
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | AniList Activity ID (null to create new, number to update) | |
isPrivate | No | Set to true if it is a private message | |
recipientId | Yes | The target user to send the message to | |
text | Yes | The activity message text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "AniList Activity ID (null to create new, number to update)",
"type": [
"number",
"null"
]
},
"isPrivate": {
"default": false,
"description": "Set to true if it is a private message",
"type": "boolean"
},
"recipientId": {
"description": "The target user to send the message to",
"type": "number"
},
"text": {
"description": "The activity message text",
"type": "string"
}
},
"required": [
"text",
"recipientId",
"id"
],
"type": "object"
}