Skip to main content
Glama

Get every gallery image page

eh_get_all_gallery_pages
Read-onlyIdempotent

Enumerates every gallery preview page to return a complete, ordered list of image-page URLs without downloading any images.

Instructions

Serially enumerate every gallery preview page and return a complete, ordered image-page list without downloading images.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
siteNoTarget site; gallery URLs override this when a URL is providede-hentai
galleryNoGallery ID and token; provide this or galleryUrl, but not both
maxImagesNoMaximum image pages to return, from 1 through 5000
galleryUrlNoFull gallery URL; provide this or gallery, but not both

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.1.2
    • addedInput schema / properties / gallery / description
      Added value: +"Gallery ID and token; provide this or galleryUrl, but not both"
    • addedInput schema / properties / galleryUrl / description
      Added value: +"Full gallery URL; provide this or gallery, but not both"
    • addedInput schema / properties / maxImages / description
      Added value: +"Maximum image pages to return, from 1 through 5000"
    • addedInput schema / properties / site / description
      Added value: +"Target site; gallery URLs override this when a URL is provided"
  2. First observedv0.1.0

TDQS

A4.3/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint, idempotentHint, openWorldHint, destructiveHint=false), the description reveals meaningful behavioral traits: serial enumeration, complete/ordered output, and no image downloads. These traits help an agent set expectations about performance and side effects. There is no contradiction with the annotations.

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?

A single sentence that front-loads the core behavior and constraints with no filler. Every phrase contributes: 'serially', 'every gallery preview page', 'complete, ordered image-page list', and 'without downloading images'.

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?

Given the rich output schema and annotations, the description adds the essential behavioral context an agent needs to select and invoke the tool correctly. It clearly states what the tool does, how it behaves, and what it avoids, leaving parameter details to the schema.

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%, so the baseline is 3. The description adds no additional meaning about parameters like site, gallery, maxImages, or galleryUrl; it relies entirely on the schema for parameter semantics.

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

Purpose4/5

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

The description clearly states a specific verb ('enumerate'), resource ('every gallery preview page'), and result ('complete, ordered image-page list'), plus a scope constraint ('without downloading images'). It does not explicitly differentiate this from the sibling eh_get_gallery_pages, though the 'every' phrasing implies broader coverage.

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 conveys a clear usage context: use this when you need a complete, ordered enumeration of gallery image pages without downloading the images themselves. However, it does not explicitly name alternatives or state when not to use it, so it falls short of explicit routing guidance.

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