get_user_profile
Retrieve AniList user profile data by providing a username or user ID through the AniList MCP server, enabling access to detailed profile information.
Instructions
Get a user's AniList profile
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"
}