Anitabi MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_bangumiA | Search for a bangumi (anime) by Chinese/Japanese/English name to get its Bangumi ID, which is required for querying seichi junrei locations. Args: keyword: The name of the anime to search for. Returns: JSON string containing search results with Bangumi IDs. |
| get_anime_lite_infoA | Get the lite info of seichi junrei (anime pilgrimage) locations for a specific anime using its Bangumi ID. Args: subject_id: The Bangumi ID of the anime. Returns:
JSON string containing the lite info, including |
| get_anime_detail_pointsB | Get the detailed seichi junrei (anime pilgrimage) locations for a specific anime using its Bangumi ID. Args: subject_id: The Bangumi ID of the anime. Returns: JSON string containing a list of detailed location points. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_anime_detail_points retrieves detailed pilgrimage locations, get_anime_lite_info provides summarized top locations, and search_bangumi finds anime IDs for subsequent queries. There is no overlap in functionality, making tool selection unambiguous for an agent.
All tools follow a consistent verb_noun pattern with snake_case: get_anime_detail_points, get_anime_lite_info, and search_bangumi. The naming is predictable and readable, with no deviations in style or convention.
With 3 tools, the server is well-scoped for its purpose of anime pilgrimage data lookup, but it feels slightly thin as it lacks tools for broader operations like listing all anime or managing user data. However, the core workflow (search, get detailed info, get lite info) is covered efficiently.
The tool set covers the essential workflow for anime pilgrimage queries: searching for anime by name and retrieving both detailed and summarized location data. A minor gap exists in not providing tools for non-ID-based queries or additional metadata, but agents can work effectively with the available tools.