
Xhs Explore
- 8 installs
- 244 repo stars
- Updated March 5, 2026
- autoclaw-cc/xiaohongshu-mcp-skills
xhs-explore is a Claude skill that browses the Xiaohongshu recommendation feed and views note details and comments.
About
This skill browses the Xiaohongshu recommendation feed and views note details and comments. A user invokes it to see recommended content, scroll the home feed, or fetch the full content and comments of a note given its feed_id. It calls list_feeds for the feed and get_feed_detail for a specific note, with options for loading all comments, expanding replies, and controlling scroll speed.
- Browses the Xiaohongshu recommendation feed and opens note details with comments
- Uses list_feeds for the home feed and get_feed_detail for a specific note
- Supports comment loading options: load-all, reply expansion, and scroll speed
Xhs Explore by the numbers
- 8 all-time installs (skills.sh)
- Ranked #1,519 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
xhs-explore capabilities & compatibility
Free; needs a local xiaohongshu-mcp service and a logged-in Xiaohongshu account.
- Capabilities
- feed browsing · note reading · comment retrieval
- Use cases
- research
- Runs
- Runs locally
- Pricing
- Free
What xhs-explore says it does
浏览小红书推荐流、查看笔记详情和评论。
调用 `list_feeds`(无参数),返回首页推荐笔记列表。
npx skills add https://github.com/autoclaw-cc/xiaohongshu-mcp-skills --skill xhs-exploreAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 244 |
| Last updated | March 5, 2026 |
| Repository | autoclaw-cc/xiaohongshu-mcp-skills ↗ |
What it does
Browse the Xiaohongshu feed and view note details and comments by feed_id.
Who is it for?
Reading the Xiaohongshu feed and pulling full note content and comments for a given feed_id.
Skip if: Publishing notes (use post-to-xhs) or liking/commenting (use xhs-interact).
When should I use this skill?
The user wants to browse recommendations, view a note's detail or comments, or has a feed_id to expand.
What you get
The user sees the recommendation feed or a note's full content, images, author, engagement, and comments.
- the home recommendation feed list
- a note's full content, images, author, engagement, and comments
By the numbers
- default 10 comments returned
- 2-step execution flow
Files
输入判断
- 用户想浏览推荐 → 步骤 1
- 用户提供了 feed_id → 步骤 2
执行流程
1. 获取推荐流
调用 list_feeds(无参数),返回首页推荐笔记列表。
展示每条笔记的标题、作者、互动数据,附带 feed_id 和 xsec_token。
2. 查看笔记详情
调用 get_feed_detail:
feed_id(string,必填)xsec_token(string,必填)load_all_comments(bool,可选,默认 false,仅返回前 10 条评论)limit(int,可选,load_all_comments=true 时生效,默认 20)click_more_replies(bool,可选,是否展开二级回复)reply_limit(int,可选,跳过回复数超过此值的评论,默认 10)scroll_speed(string,可选:slow | normal | fast)
展示:笔记内容、图片、作者信息、互动数据、评论列表。
提示用户可以:
- 点赞/收藏(使用 xhs-interact)
- 发表评论(使用 xhs-interact)
- 查看作者主页(使用 xhs-profile)
失败处理
| 场景 | 处理 |
|---|---|
| 未登录 | 引导使用 xhs-login |
| 笔记已删除或不可见 | 告知用户该笔记无法访问 |
Related skills
FAQ
What is needed to open a note detail?
A feed_id and an xsec_token, obtained from search or feed results.
How many comments load by default?
The first 10 comments unless load_all_comments is set to true.