mcp-animenewsnetwork
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANN_LOG_LEVEL | No | silent, error, info or debug. Logs go to stderr. | error |
| ANN_TIMEOUT_MS | No | Per-request timeout. | 15000 |
| ANN_USER_AGENT | No | User-Agent sent to Anime News Network. | mcp-animenewsnetwork v<version> (<repo>) |
| ANN_MAX_RETRIES | No | Retries on rate limiting and transient errors. | 3 |
| ANN_CACHE_TTL_MS | No | Encyclopedia cache lifetime (1 hour). | 3600000 |
| ANN_MIN_INTERVAL_MS | No | Minimum gap between requests. Values below 1000 ms are ignored. | 1100 |
| ANN_CACHE_MAX_ENTRIES | No | In-memory cache size, shared shape across both caches. | 200 |
| ANN_NEWS_CACHE_TTL_MS | No | News cache lifetime (5 minutes). | 300000 |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_titlesA | Search the Anime News Network encyclopedia for anime and manga by title. Returns one compact row per match: id, kind, type, name, precision and vintage. Use the id and kind with get_title to read the full entry. Matching is on substring, so a short query returns a lot: narrow the query rather than raising 'limit'. This searches titles only. It cannot find an entry from a plot detail, a character or a studio. |
| get_titleA | Read one Anime News Network encyclopedia entry by id. Get the id and kind from search_titles first. Sections are opt-in because a full record is very large: ask only for what you need. 'basic' covers type, vintage, genres, themes, episode count, ratings and the plot summary. Long plot summaries are paginated: when 'truncated' is true, call again with 'offset' set to 'next_offset'. |
| list_recentA | List what was added to the Anime News Network encyclopedia most recently: anime, manga, people or companies. Pass 'starts_with' to browse titles alphabetically instead, which only applies to anime and manga. Rows carry an id you can pass to get_title when the kind is anime or manga. This is a listing, not a search: use search_titles when you know what you are looking for. |
| get_newsA | Read the latest Anime News Network stories from their RSS feeds. 'all' mixes news, reviews and features; 'news' and 'reviews' are the narrower feeds. Filter with 'category' to keep only stories the feed tags a given way, such as Manga or Anime. The feed is the whole window available: there is no way to reach older stories through this tool. When you repeat a story, cite Anime News Network and link the article. |
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 4 tools
Each tool has a clearly distinct purpose: searching titles, reading an encyclopedia entry by id, listing recent additions, and fetching news. The descriptions explicitly call out where one tool should be preferred over another.
Tool names mostly follow a consistent verb_noun pattern: search_titles, get_title, get_news. list_recent is slightly inconsistent because 'recent' is not a clear resource noun, but the overall style is still predictable and readable.
Four tools is well-scoped for this server: search, read, browse/list, and news each cover a distinct part of the Anime News Network domain without redundancy.
The core workflows are covered: find an anime/manga by title, read its full entry, browse recent additions, and get current news. Minor gaps exist, such as no direct search for people or companies and no access to older news stories, but these are workable for the stated purpose.