Skip to main content
Glama
hect0x7

JMComic AI

by hect0x7

browse_albums

Find and rank manga albums by category, time range, and sorting criteria to identify top titles or explore specific collections.

Instructions

浏览、过滤、排行本子,支持灵活的分类、时间范围和排序选项。

该工具结合了分类浏览和排行榜功能,支持:

  • 浏览特定分类(同人、韩漫等)。

  • 按时间范围过滤(今天、本周、本月、全部)。

  • 按不同标准排序(点赞、观看、最新、图片数、评分、评论数)。

参数: category: 分类过滤器。可选值: - "all" 或 "0": 全部分类 - "doujin": 同人 - "single": 单本 - "short": 短篇 - "hanman": 韩漫 - "meiman": 美漫 - "doujin_cosplay": Cosplay - "3D": 3D - "another": 其他 - "english_site": 英文站 (默认值: "all")

time_range: 时间范围过滤器。可选值:
    - "all": 全部时间
    - "day" 或 "today": 今天
    - "week": 本周
    - "month": 本月
    (默认值: "all")

order_by: 排序方式。可选值:
    - "latest": 最新更新
    - "likes": 最多点赞
    - "views": 最多观看
    - "pictures": 最多图片
    - "score": 评分最高
    - "comments": 评论最多
    (默认值: "latest")

page: 页码,从1开始(默认值: 1)

返回: 包含以下内容的字典: - albums: 本子简要信息列表 (id, title, tags, cover_url) - total_count: 结果总数 - error: 如果参数无效,则包含错误信息(可选)

注意:该 API 不包含详细统计数据(点赞/观看/作者)。
      请使用 get_album_detail() 获取特定本子的完整信息。

示例: # 1. 获取本月点赞排行 (月榜) browse_albums(time_range="month", order_by="likes")

# 2. 浏览同人志分类 (最新)
browse_albums(category="doujin", order_by="latest")

# 3. 浏览本周热门韩漫 (特定分类排行榜)
browse_albums(category="hanman", time_range="week", order_by="views")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
categoryNoall
order_byNolatest
time_rangeNoall

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full behavioral disclosure burden. It discloses the return shape, reports that invalid parameters may produce an error, and clearly states that detailed statistics (likes/views/author) are absent, which prevents false expectations. It does not mention auth or rate limits, but those are not critical for a read-only browse tool.

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 longer than average, but the length is justified: it documents four parameters entirely, explains the return contract, and gives three representative examples. The content is organized into clear sections and the most important behavioral limitation is front-loaded before the detailed parameter list.

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?

For a browse/ranking tool with no schema-level parameter documentation and no annotations, this description is complete. It covers all valid parameter values, defaults, pagination page semantics, return fields, error behavior, and the key limitation with routing to the correct sibling tool. Nothing essential for calling it correctly is missing.

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

Parameters5/5

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

The input schema provides no descriptions and no enums, and schema coverage is 0%, so the description must fully compensate. It does so by listing every accepted value for category, time_range, and order_by, plus defaults for all parameters, and by adding practical examples showing meaningful combinations.

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 opens with a specific verb+resource combination ('浏览、过滤、排行本子') and explains that the tool combines category browsing with ranking. It also distinguishes itself from get_album_detail by noting that detailed statistics are intentionally not included, so an agent can tell which tool to use.

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 through parameter combinations and examples, and explicitly routes to get_album_detail() when detailed statistics are needed. It does not explicitly contrast with search_album, but the browse/filter/rank framing makes the intended use clear enough.

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