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
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| category | No | all | |
| order_by | No | latest | |
| time_range | No | all |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||