xhs-mcp

MCP.Pizza Chef: jobsonlook

Xiaohongshu, also known as RED or Little Red Book, is a Chinese lifestyle and shopping app. This add-on reads the home feed, searches posts by keyword, pulls a post's full text, lists its comments, and can publish a comment of your own. It needs the sign-in cookie copied out of your browser, which expires and has to be refreshed. There have been no code changes since February 2026, and the author states it is for study only.

Communication
Web/Research

Use This MCP server To

Search Xiaohongshu posts about a product I am researching Read the full text of a post someone sent me Pull the comments under a post to see reactions Publish a comment on a note from my chat window Check whether my saved sign-in still works

README

小红书MCP服务

smithery badge PyPI version

一个用于小红书API的MCP(Model Context Protocol)服务器,支持搜索笔记、获取内容、查看评论和发表评论等功能。

特点

  • 采用js逆向出x-s,x-t,直接请求http接口,无须笨重的playwright
  • 搜索笔记
  • 获取笔记内容
  • 获取笔记的评论
  • 发表评论

特性

快速开始

方法一:使用uvx(推荐)

1. 环境要求
  • Python 3.12+
  • uv (安装方法: pip install uv)
2. 获取小红书的cookie

打开web小红书 登录后,获取cookie,将cookie配置到下一步的 XHS_COOKIE 环境变量中 cookie

3. 配置MCP服务器

在你的MCP客户端配置文件中添加以下配置:

{
    "mcpServers": {
        "xhs-mcp": {
            "command": "uvx",
            "args": [
                "--from",
                "jobson-xhs-mcp",
                "xhs-mcp"
            ],
            "env": {
                "XHS_COOKIE": "你的小红书cookie"
            }
        }
    }
}
4. 测试运行
# 设置环境变量
export XHS_COOKIE="你的小红书cookie"

# 直接运行测试
uvx --from jobson-xhs-mcp xhs-mcp --help

方法二:从源码安装

1. 环境要求
  • node
  • python 3.12
  • uv (pip install uv)
2. 克隆并安装
git clone git@github.com:jobsonlook/xhs-mcp.git
cd xhs-mcp
uv sync
3. 获取小红书的cookie

打开web小红书 登录后,获取cookie,将cookie配置到下一步的 XHS_COOKIE 环境变量中 cookie

4. 配置MCP服务器
{
    "mcpServers": {
        "xhs-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/xhs-mcp",
                "run",
                "xhs_mcp/__main__.py"
            ],
            "env": {
                "XHS_COOKIE": "你的小红书cookie"
            }
        }
    }
}

可用工具

本MCP服务器提供以下工具:

  • check_cookie() - 检测cookie是否失效
  • home_feed() - 获取首页推荐笔记
  • search_notes(keywords) - 根据关键词搜索笔记
  • get_note_content(url) - 获取笔记内容(需要带xsec_token的完整URL)
  • get_note_comments(url) - 获取笔记评论(需要带xsec_token的完整URL)
  • post_comment(comment, note_id) - 发布评论到指定笔记

使用示例

在Claude Desktop中使用

  1. 打开Claude Desktop的设置
  2. 找到MCP服务器配置
  3. 添加上述JSON配置
  4. 重启Claude Desktop
  5. 现在你可以在对话中使用小红书相关功能了

常见问题

Q: Cookie如何获取? A: 在浏览器中登录小红书网页版,打开开发者工具,在Network标签页中找到任意请求,复制Cookie头的值。

Q: 为什么提示cookie失效? A: 小红书的cookie有时效性,需要定期更新。重新登录网页版获取新的cookie即可。

Q: uvx命令找不到? A: 请先安装uv:pip install uv,然后确保PATH环境变量包含uv的安装路径。

免责声明

本项目仅用于学习交流,禁止用于其他用途,任何涉及商业盈利目的均不得使用,否则风险自负。

xhs-mcp FAQ

Is this still maintained?
The last code change was February 2026, so it is quiet — and because it leans on the site's internal behaviour, it can break without warning.
Which apps does it work in?
Claude Desktop and any other assistant that reads a standard tool-server config file.
Do I need a token?
No token, but you must sign in on the Xiaohongshu website and copy your browser cookie into the config.
How hard is setup?
Developer level — you install the uv tool, then dig your cookie out of the browser developer tools.
Can I use this to leave a comment on a post?
Yes — it can publish a comment you have approved to a specific note.
Why does it stop working?
The cookie expires after a while; sign in again on the website and paste in a fresh one.
Can I use it for business?
No — the author says it is for study and exchange only, and forbids commercial use.