get_user_manga_list
Retrieve a user's manga list from AniList by providing their username or ID using the anilist-mcp server integration.
Instructions
Get a user's manga 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"
}