Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Search, analyze, and interact with Xiaohongshu (RedNote/小红书) content via a local MCP server and shell scripts.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/search.sh
1#!/bin/bash2# 搜索小红书内容34KEYWORD="$1"56if [ -z "$KEYWORD" ]; then7echo "用法: $0 <关键词>"8exit 19fi1011SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"12ARGS=$(jq -n --arg kw "$KEYWORD" '{"keyword":$kw}')13"$SCRIPT_DIR/mcp-call.sh" search_feeds "$ARGS"14