get_user_anime_list
Retrieve a user's anime list using their username or ID. Integrate with the AniList MCP server to access and manage anime-related data efficiently.
Instructions
Get a user's anime list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user | Yes | Username or user ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"user": {
"description": "Username or user ID",
"type": [
"number",
"string"
]
}
},
"required": [
"user"
],
"type": "object"
}