delete_activity
Remove an activity post for the authorized user by specifying the AniList activity ID through the AniList MCP server.
Instructions
[Requires Login] Delete the current authorized user's activity post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The AniList activity ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The AniList activity ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}