get_character_subjects
Retrieve a list of subjects (e.g., anime, games) where a specific character appears by providing the character ID. Supports querying through Bangumi TV MCP Service for accurate results.
Instructions
List subjects (e.g., anime, games) where a character appears.
Args:
character_id: The ID of the character.
Returns:
Formatted list of related subjects 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_subjectsArguments",
"type": "object"
}