Skip to main content
Glama
Grinv

MAL MCP Server

Get my anime list

get_my_anime_list
Read-only

Retrieve your MyAnimeList entries with their status, score, and progress. Filter by list status and sort by score, updated date, title, or start date to track your anime.

Instructions

Get the authenticated user's own anime list, with each entry's status, score and progress. Requires a MyAnimeList login.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoSort order. list_score/list_updated_at return highest/most-recent first; anime_title returns A-Z.
limitNoMax results (1-100).
offsetNoOffset for pagination.
statusNoList status bucket.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes
has_next_pageYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.9.0
    • addedOutput schema / properties / items / items / properties / mal_id / exclusiveMinimum
      Added value: +0
    • addedOutput schema / properties / items / items / properties / mal_id / maximum
      Added value: +9007199254740991
    • changedOutput schema / properties / items / items / properties / mal_id / type
      Previous value: -"number"New value: +"integer"
    • addedOutput schema / properties / items / items / required
      Added value: +[
      +  "mal_id"
      +]
  2. Changed2 schema fields changedv0.8.0
    • addedInput schema / additionalProperties
      Added value: +false
    • changedInput schema / properties / sort / description
      Previous value: -"Sort order."New value: +"Sort order. list_score/list_updated_at return highest/most-recent first; anime_title returns A-Z."
  3. Changed2 schema fields changedv0.7.1
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "additionalProperties": false,
      +  "properties": {
      +    "has_next_page": {
      +      "type": "boolean"
      +    },
      +    "items": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "list_status": {
      +            "additionalProperties": {},
      +            "propertyNames": {
      +              "type": "string"
      +            },
      +            "type": "object"
      +          },
      +          "mal_id": {
      +            "type": "number"
      +          },
      +          "title": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "items",
      +    "has_next_page"
      +  ],
      +  "type": "object"
      +}
  4. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already carry the safety profile (readOnlyHint=true, openWorldHint=true), so the description only needs to add non-redundant behavior details. It does: it discloses the authentication dependency and indicates the returned entries are the user's personal scores/progress. This is consistent with the annotations and adds beyond them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences occupy about twenty-one words with zero filler. The action, resource, and scope come first, and the auth precondition follows in the second sentence. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With all four parameters documented in the schema, an output schema present, and readOnly/openWorld annotations covering safety, the description only needs to convey the data domain and prerequisites — which it does. An agent deciding whether to call this tool has everything needed: scope, auth state, and expected entry content.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%: sort, limit, offset, and status each carry their own type, constraints, and semantics, so the schema does the heavy lifting. The description mentions status/score/progress, mapping loosely to the status parameter, but adds no parameter detail beyond the schema, keeping this at baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description pairs a specific verb ('Get') with a precisely scoped resource ('the authenticated user's own anime list') and enumerates the per-entry fields (status, score, progress). The 'authenticated user's own' framing cleanly distinguishes it from public-catalog siblings like search_anime, get_top_anime, and get_anime.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context: it targets the logged-in user's personal list, and it states a precondition ('Requires a MyAnimeList login') that tells the agent when this tool can be invoked. It stops short of a 5 because it does not explicitly name alternatives or when-not-to-use scenarios (e.g., 'for public ranking data use get_top_anime').

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.