Code Pluginsource linked

社媒数据助手 小红书 MCP | Xiaohongshu XHS RedNote MCPv0.1.14

SocialDataX / 社媒数据助手 为小红书 / Xiaohongshu / XHS / RedNote 提供社媒研究支持:笔记搜索、评论分析、笔记详情、评论回复、博主信息和博主笔记。

xhs-insights-openclaw-plugin·runtime xhs-insights-openclaw-plugin·by @devinchen2014
Community code plugin. Review compatibility and verification before install.
openclaw plugins install clawhub:xhs-insights-openclaw-plugin
Latest release: v0.1.14Download zip

Capabilities

configSchema
Yes
configUiHints
Yes
Executes code
Yes
HTTP routes
0
Providers
xhs-insights
Runtime ID
xhs-insights-openclaw-plugin

Compatibility

Built With Open Claw Version
2026.5.9
Plugin Api Range
>=2026.0.0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The stated purpose is social media research for Xiaohongshu/XHS/RedNote, and the declared tools match that purpose: note search, note details, comments, replies, creator profiles, and creator posts.
Instruction Scope
Tool inputs such as keywords, note URLs or IDs, profile URLs, user IDs, and pagination tokens are forwarded to the hosted MCP endpoint; this is purpose-aligned but users should understand that research inputs leave the local environment.
Install Mechanism
The package is a small npm-pack OpenClaw plugin with five files, no setup hook, no startup activation, and a normal MCP SDK dependency.
Credentials
It requires Node, one SocialDataX API key environment variable, and network access to the declared fixed domain https://mcp.52choujiang.com, which is proportionate for a hosted MCP integration.
Persistence & Privilege
No persistence, background worker, local file indexing, account mutation, shell execution, or privilege escalation behavior was found; the API key is read from environment variables and sent as a bearer token to the fixed endpoint.
Scan Findings in Context
[SQP-2] expected: The privacy concern is valid context because tool calls go to a third-party hosted service, but the artifact does disclose the hosted endpoint, API-key requirement, fixed network target, and read-only forwarding behavior in the manifest and README, so this does not rise to Review on its own.
Assessment
Install this only if you are comfortable sending Xiaohongshu search terms, note/profile URLs or IDs, and related research inputs to SocialDataX's hosted MCP service. Avoid using it with confidential campaign plans, private investigations, or personal data unless you trust that service's privacy and retention practices.

Verification

Tier
source linked
Scope
artifact only
Summary
Validated package structure and linked the release to source metadata.
Commit
d6da5bb
Tag
main
Provenance
No
Scan status
clean

Tags

latest
0.1.14

社媒数据助手 小红书 MCP | Xiaohongshu XHS RedNote MCP

This directory contains an OpenClaw native plugin shim for the hosted 小红书 MCP service by SocialDataX.

The plugin registers namespaced OpenClaw tools and forwards each call to a remote, read-only streamable-http MCP endpoint:

  • Endpoint: https://mcp.52choujiang.com/xhs/mcp
  • API key environment variable: SOCIALDATAX_API_KEY
  • Product: SocialDataX / 社媒数据助手
  • Website: https://socialdatax.com
  • Package name: xhs-insights-openclaw-plugin
  • Version: 0.1.14
  • Search terms: Xiaohongshu, XHS, RedNote, 小红书, social media research, marketing research, comments, creator profiles

Capabilities

The hosted XHS MCP supports read-only Xiaohongshu / XHS / RedNote workflows:

  • Search notes by keyword with optional sort, note type, and publish-time filters.
  • Resolve shared note links, short links, or share text into structured details.
  • Fetch note details directly when a note ID is already known.
  • Fetch note details, first-level comments, and comment replies.
  • Read creator profile information.
  • Fetch creator note lists for content style and account research.

The service does not provide account login, posting, editing, liking, commenting, or other account actions.

Plugin Structure

This package uses the native OpenClaw plugin path:

  • openclaw.plugin.json declares the native plugin manifest and tool contracts.
  • package.json declares the OpenClaw extension entry and MCP SDK dependency.
  • index.js registers thin forwarding tools that call the hosted MCP service.
  • Runtime metadata declares the required node binary, SOCIALDATAX_API_KEY, and the hosted MCP service domain.

It intentionally does not include .codex-plugin/ or .mcp.json, because OpenClaw gives openclaw.plugin.json native-plugin precedence when both marker types are present.

API Key

Set the shared API key before using this plugin:

export SOCIALDATAX_API_KEY="<SOCIALDATAX_API_KEY>"

The key is sent as:

Authorization: Bearer ${SOCIALDATAX_API_KEY}

The plugin sends the key only to the fixed endpoint https://mcp.52choujiang.com/xhs/mcp. It does not support overriding the endpoint URL.

Do not commit real API keys to code, docs, issues, or screenshots.

Tool Names

The native plugin registers namespaced tool names that match the earlier MCP server prefix convention. For example, the remote MCP tool xhs_search_notes is exposed as:

xhs-insights__xhs_search_notes

Publishing Check

Use ClawHub dry-run before publishing:

source ~/.nvm/nvm.sh
nvm use 24.13.0
clawhub package publish <public-checkout>/xhs-insights-openclaw \
  --family code-plugin \
  --name xhs-insights-openclaw-plugin \
  --display-name "社媒数据助手 小红书 MCP | Xiaohongshu XHS RedNote MCP" \
  --version 0.1.14 \
  --source-repo <public-owner/public-repo> \
  --source-commit <public-commit-sha> \
  --source-path xhs-insights-openclaw \
  --dry-run \
  --json

Publish from a public GitHub source or pass explicit public --source-repo, --source-commit, and --source-path values. Do not publish from a private source checkout.