post_text_activity
Create or update AniList text activities by submitting activity content and ID. Requires login for authorized access to the anilist-mcp server.
Instructions
[Requires Login] Post a new text activity or update an existing one
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | AniList Activity ID (null to create new, number to update) | |
text | Yes | The content of the activity |
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"
]
},
"text": {
"description": "The content of the activity",
"type": "string"
}
},
"required": [
"text",
"id"
],
"type": "object"
}