get_activity
Retrieve a specific AniList activity by its unique ID using the anilist-mcp server. Input the activity ID to fetch detailed activity data directly from the AniList API.
Instructions
Get a specific AniList activity by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityID | Yes | The AniList activity ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"activityID": {
"description": "The AniList activity ID",
"type": "number"
}
},
"required": [
"activityID"
],
"type": "object"
}