get_character_persons
Retrieve a formatted list of persons, such as voice actors, associated with a specific character using the character ID through Bangumi TV MCP Service.
Instructions
List persons (e.g., voice actors) related to a character.
Args:
character_id: The ID of the character.
Returns:
Formatted list of related persons or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
character_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"character_id": {
"title": "Character Id",
"type": "integer"
}
},
"required": [
"character_id"
],
"title": "get_character_personsArguments",
"type": "object"
}