Skip to main content
Glama

Get one image page

eh_get_image_page
Read-onlyIdempotent

Resolves an E-Hentai image page to its displayed and original image URLs, navigation links, and page keys.

Instructions

Resolve one E-Hentai image page to the displayed image URL, original-image URL when available, navigation links, and page keys.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoImage-page reference; provide this or pageUrl, but not both
siteNoTarget site; gallery URLs override this when a URL is providede-hentai
pageUrlNoAlternative to page: full E-Hentai image-page URL

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv0.1.2
    • addedInput schema / properties / page / description
      Added value: +"Image-page reference; provide this or pageUrl, but not both"
    • addedInput schema / properties / site / description
      Added value: +"Target site; gallery URLs override this when a URL is provided"
  2. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds valuable behavioral context beyond annotations: it states that the original-image URL is returned only 'when available' and lists navigation links and page keys as outputs. No contradiction with 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?

The description is a single, front-loaded sentence with no filler. It begins with the action and resource, then compactly lists the output components. Every clause earns its place.

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

Completeness4/5

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

For a read-only, idempotent single-page resolution tool, the description covers the essential purpose and output semantics, and the output schema provides return-value details. The only meaningful gap is explicit routing guidance against gallery-page siblings, which is minor given the clarity of the rest.

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%, with every parameter (page, site, pageUrl) having its own description. The tool description adds no parameter-level detail, but the schema fully carries that burden, so a baseline score of 3 is appropriate.

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 uses a specific verb ('Resolve') and clearly names the resource ('one E-Hentai image page') plus the expected outputs: displayed image URL, original-image URL when available, navigation links, and page keys. It is clear and distinct from gallery-level tools, though it does not explicitly name any sibling to differentiate itself.

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

Usage Guidelines3/5

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

Usage is implied by the word 'one' — this tool resolves a single image page rather than a full gallery. However, the description does not explicitly explain when to prefer this over sibling tools like eh_get_gallery_pages or eh_get_all_gallery_pages, nor does it mention exclusions or alternative conditions.

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