Bangumi TV MCP Service
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BANGUMI_TOKEN | No | Bangumi Access Token for authenticated operations and R18 content. Required for authenticated operations (collections, personal data), R18 content access, and write operations (create, update, delete). |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_daily_broadcastB | |
| search_subjectsB | |
| browse_subjectsA | |
| get_subject_detailsC | |
| get_subject_personsB | |
| get_subject_charactersC | |
| get_subject_relationsC | |
| get_episodesA | |
| get_episode_detailsC | |
| search_charactersA | |
| get_character_detailsB | |
| get_character_subjectsB | |
| get_character_personsB | |
| search_personsA | |
| get_person_detailsC | |
| get_person_subjectsB | |
| get_person_charactersA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| search_and_summarize_anime | Search for anime based on a keyword and ask for a summary of the results. Args: keyword: The keyword to search for anime. |
| get_subject_full_info | Get detailed information, related persons, characters, and relations for a subject. Args: subject_id: The ID of the subject to get information for. |
| find_voice_actor | Search for a character by name and find their voice actor. Args: character_name: The name of the character. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| api://bangumi/openapi |
TDQS
Scored across 17 tools
Every tool has a clearly distinct purpose with no ambiguity. Tools are organized by entity type (subject, character, person, episode) and action (browse, get, search), making it easy to differentiate between them. For example, get_subject_details retrieves details, while get_subject_characters lists related characters, avoiding overlap.
Tool names follow a highly consistent verb_noun pattern throughout, using snake_case uniformly. All tools start with 'browse_', 'get_', or 'search_', followed by the entity name (e.g., 'subjects', 'character_details'), making them predictable and readable. There are no deviations in naming conventions.
With 17 tools, the count is slightly high but reasonable for a comprehensive media database server covering subjects, characters, persons, and episodes. It includes essential operations like browsing, searching, and retrieving details, though it might feel a bit heavy compared to simpler APIs. The tools are well-scoped, with each serving a distinct function.
The tool surface provides complete coverage for the Bangumi TV domain, including CRUD-like operations for browsing, searching, and retrieving details across all entity types (subjects, characters, persons, episodes). It supports relationships between entities (e.g., get_subject_characters) and includes specialized tools like get_daily_broadcast, leaving no obvious gaps for agent workflows.