get_subject_characters
Retrieve a formatted list of characters related to a specific subject by providing its subject ID. Optimized for accessing character data within the Bangumi TV MCP Service.
Instructions
List characters related to a subject.
Args:
subject_id: The ID of the subject.
Returns:
Formatted list of related characters or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subject_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"subject_id": {
"title": "Subject Id",
"type": "integer"
}
},
"required": [
"subject_id"
],
"title": "get_subject_charactersArguments",
"type": "object"
}