Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By ibreez3
Automate publishing image/text and video content to Xiaohongshu (Little Red Book) with scheduling support; fetch homepage feeds, search by keyword, retrieve post details with comments, post comments, and manage login via QR code scan using CLI commands, Node.js skills, and agent workflows.
npx claudepluginhub ibreez3/xiaohongshu-skillCheck Xiaohongshu login status and get QR code if needed
Get detailed information about a Xiaohongshu feed (post)
List feeds from Xiaohongshu homepage
Post a comment to a Xiaohongshu feed
Publish image/text content to Xiaohongshu (Little Red Book)
Check Xiaohongshu login status and display QR code if needed
Get detailed information about a Xiaohongshu feed via HTTP API
List feeds from Xiaohongshu homepage via HTTP API
Post a comment to a Xiaohongshu feed via HTTP API
Publish image/text content to Xiaohongshu (Little Red Book) via HTTP API
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
小红书笔记自动创作技能:撰写内容、生成精美封面与正文卡片、可选一键发布。支持 8 种排版主题(sketch / neo-brutalism / botanical 等)和 4 种智能分页模式。
Claude Code skill pack for Hootsuite (18 skills)
智能内容创作工作流插件,支持从热点收集到多平台发布的一站式自动化流程
Social media scheduling and publishing for AI agents on X, LinkedIn, Instagram, Facebook, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest.
Publish Markdown/HTML articles to WeChat Official Account (微信公众号) drafts
Sync articles to 20+ content platforms (Zhihu, Juejin, CSDN, Toutiao, Weibo, etc.)
🎯 现在支持 OpenClaw! 使用 HTTP API 适配器在 OpenClaw 中实现小红书自动化。详见 OpenClaw 快速开始。
A powerful plugin for automating content publishing to Xiaohongshu (Little Red Book) via the xiaohongshu-mcp server.
xiaohongshu-mcp uses SSE (Server-Sent Events) for MCP transport, which requires:
OpenClaw's Skill system uses simple function calls and cannot maintain SSE connections.
Solution: Use Cursor, Claude Code, or other MCP-compatible clients instead.
✨ 现在支持 OpenClaw! 通过 HTTP API 适配器实现小红书自动化
三步快速开始:
启动 xiaohongshu-mcp:
cd /path/to/xiaohongshu-mcp && npm start
安装适配器:
./install-adapter.sh
重启 OpenClaw 并开始使用:
/check-login # 检查登录状态
/publish "标题" "内容" ["/path/img.jpg"] ["标签"]
📖 完整指南: OpenClaw 使用指南 | 快速开始
Install Cursor: https://cursor.sh/
Create MCP config (.cursor/mcp.json):
{
"mcpServers": {
"xiaohongshu-mcp": {
"url": "http://localhost:18060/mcp",
"description": "小红书 MCP 服务"
}
}
}
Start xiaohongshu-mcp:
cd /path/to/xiaohongshu-mcp
npm start
Restart Cursor and start publishing!
# Add MCP server
claude mcp add --transport http xiaohongshu-mcp http://localhost:18060/mcp
# Verify connection
claude mcp list
npx @modelcontextprotocol/inspector
# Open browser and connect to: http://localhost:18060/mcp
Before using this skill, you need to deploy and run the xiaohongshu-mcp server:
Clone the xiaohongshu-mcp repository:
git clone https://github.com/xpzouying/xiaohongshu-mcp.git
cd xiaohongshu-mcp
Install dependencies and start the server:
npm install
npm start
By default, the MCP server will run on http://127.0.0.1:18060/mcp
This Skill depends on the xiaohongshu-mcp server for all operations. Special thanks to xpzouying for developing the xiaohongshu-mcp project, which made this Skill possible.
Run the installation script:
./install.sh
The script will:
Then:
Start xiaohongshu-mcp server (if not running):
cd /path/to/xiaohongshu-mcp
npm start
Restart OpenClaw:
openclaw restart
# or completely quit and reopen OpenClaw
Test the installation:
node test-mcp-client.js
# Create installation directory
mkdir -p ~/.openclaw/skills/xiaohongshu-auto-publish
# Copy files
cp index.js ~/.openclaw/skills/xiaohongshu-auto-publish/
cp openclaw.plugin.json ~/.openclaw/skills/xiaohongshu-auto-publish/
cp -r commands ~/.openclaw/skills/xiaohongshu-auto-publish/
cp -r skills ~/.openclaw/skills/xiaohongshu-auto-publish/
# Set permissions
chmod +x ~/.openclaw/skills/xiaohongshu-auto-publish/index.js
For detailed installation instructions, see INSTALL.md.
./uninstall.sh