get_character
Retrieve detailed information about a specific character using their AniList ID or name, accessible via the AniList MCP server.
Instructions
Get information about a character by their AniList ID or name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The AniList ID of the character |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The AniList ID of the character",
"type": [
"number",
"string"
]
}
},
"required": [
"id"
],
"type": "object"
}