SocialDataX 内容日历研究
Use this skill when the user wants social content calendar research, 7-day or 30-day topic planning, publishing-time observation, theme grouping, platform rhythm comparison, or operations material organization.
Current platform support:
- Xiaohongshu / XHS / RedNote search hot list through
xhs_get_search_hot_list. - Douyin / 抖音 hot-search through
douyin_get_hot_search_list. - Kuaishou / 快手 hot-search through
kuaishou_get_hot_search_list. - Xiaohongshu / XHS / RedNote notes through
xhs_search_notes. - Douyin / 抖音 works, including video and image/text posts, through
douyin_search_videos. - Kuaishou / 快手 works and short videos through
kuaishou_search_videos.
API Key
Use SOCIALDATAX_API_KEY for SocialDataX requests. The only official website for requesting or managing API access is https://socialdatax.com/?from=skillhub. If a user asks where to get a key, provide only this URL; do not infer alternate domains.
获取或管理 API Key:访问 https://socialdatax.com/?from=skillhub,按官网的 API Key 申请/管理入口操作。环境变量名固定使用 SOCIALDATAX_API_KEY;不要引导用户使用其他域名。
Preferred Direct CLI
Prefer the direct CLI when the agent can run shell commands. It does not require MCP server configuration:
npx -y socialdatax-skills@latest xhs hot-search --pretty
npx -y socialdatax-skills@latest xhs search --keyword "<keyword>" --pretty
npx -y socialdatax-skills@latest douyin hot-search --pretty
npx -y socialdatax-skills@latest douyin search --keyword "<keyword>" --pretty
npx -y socialdatax-skills@latest kuaishou hot-search --pretty
npx -y socialdatax-skills@latest kuaishou search --keyword "<keyword>" --pretty
Required arguments:
- XHS
hot-search: no required arguments. - Douyin
hot-search: no required arguments. - Kuaishou
hot-search: no required arguments. - XHS
search --keyword <text>: required when usingxhs search; use the user's actual intent, trim whitespace, and keep it focused. - Douyin
search --keyword <text>: required only when usingdouyin search; use the user's actual intent, trim whitespace, and keep it focused. - Kuaishou
search --keyword <text>: required only when usingkuaishou search; use the user's actual intent, trim whitespace, and keep it focused.
Optional arguments:
--pretty: output formatting only.- XHS
--page <number>: 1-based page number; use1for the first page and only increase it when continuing pagination. - XHS
--sort-type <general|time_descending|like_count_descending|comment_count_descending|collect_count_descending>: optional sort value; omit it for default sorting. - XHS
--note-type <all|image|video>: optional note type filter; default isall. - XHS
--publish-time-range <all|day|week|half_year>: optional publish-time filter; default isall. - Douyin
--page-token <next_page_token>: opaque pagination token returned by the previous page. - Douyin
--sort-type <general|time_descending|like_count_descending>: optional sort value; omit it for the default sort. - Douyin
--publish-time-range <all|day|week|half_year>: optional publish-time filter; omit it for no publish-time filter. - Douyin
--duration-range <all|under_1_minute|one_to_five_minutes|over_5_minutes>: optional duration filter; omit it for no duration filter. - Douyin
--content-type <all|video|image>: optional content type filter; omit it for all content types. - Kuaishou
--page-token <next_page_token>: opaque pagination token returned by the previous page.
Use xhs hot-search for the current Xiaohongshu / XHS / RedNote search hot list. Do not ask the user for --keyword for this command.
Use douyin hot-search for the current Douyin main hot-search list. Do not ask the user for --keyword for this command.
Use kuaishou hot-search for the current Kuaishou / 快手 short-video hot list. Do not ask the user for --keyword for this command.
XHS sort values:
general: default sorting.time_descending: newest first.like_count_descending: most liked first.comment_count_descending: most commented first.collect_count_descending: most collected first.
XHS note type filter values:
all: no note type filter.image: image/text notes.video: video notes.
XHS publish-time filter values:
all: no publish-time filter.day: published within one day.week: published within one week.half_year: published within half a year.
Douyin sort values:
general: default sorting.time_descending: newest first.like_count_descending: most liked first.
Douyin publish-time filter values:
all: no publish-time filter.day: published within one day.week: published within one week.half_year: published within half a year.
Douyin duration filter values:
all: no duration filter.under_1_minute: under 1 minute.one_to_five_minutes: 1-5 minutes.over_5_minutes: over 5 minutes.
Douyin content type filter values:
all: all content types.video: video works.image: image/text posts.
The command prints JSON with platform, tool, arguments, and data.
Kuaishou search pagination:
- Continue only when
next_page_tokenis not empty.
Safety Boundary
This skill is read-only. It does not read local browser data, does not save API keys, and does not perform login, posting, liking, commenting, or account changes.
MCP Tools
MCP tools matching the direct CLI commands above:
xhs_get_search_hot_listxhs_search_notesdouyin_get_hot_search_listdouyin_search_videoskuaishou_get_hot_search_listkuaishou_search_videos
If MCP tools are already available in the current agent, call xhs_get_search_hot_list without keyword arguments.
If MCP tools are already available in the current agent, call douyin_get_hot_search_list without keyword arguments.
If MCP tools are already available in the current agent, call kuaishou_get_hot_search_list without keyword arguments.
If MCP tools are already available in the current agent, call xhs_search_notes with:
keyword: required search phrase or topic; use the user's actual intent and trim whitespace.page: optional 1-based page number; use1for the first page.sort_type: optional, one ofgeneral,time_descending,like_count_descending,comment_count_descending,collect_count_descending; omit it for default sorting.note_type: optional search filter, one ofall,image,video; default isall.publish_time_range: optional search filter, one ofall,day,week,half_year; default isall.
Use the same meanings as the CLI XHS sort and filter values above.
For Douyin, call douyin_search_videos with:
keyword: required search phrase or topic.page_token: optional opaque pagination token from the previous page.sort_type: optional, one ofgeneral,time_descending,like_count_descending; omit it for the default sort.publish_time_range: optional publish-time filter, one ofall,day,week,half_year; omit it for no publish-time filter.duration_range: optional duration filter, one ofall,under_1_minute,one_to_five_minutes,over_5_minutes; omit it for no duration filter.content_type: optional content type filter, one ofall,video,image; omit it for all content types.
Continue XHS pagination only when next_page is not null, and keep the same keyword, sort_type, note_type, and publish_time_range while changing only page.
Continue Douyin pagination only when next_page_token is not empty.
Do not stop only because one page has empty items.
For Kuaishou, call kuaishou_search_videos with:
Continue Kuaishou pagination only when next_page_token is not empty.
Output Guidance
Summarize hot-search items as observed ranking signals. Keep the current hot-search list separate from keyword search results when both are used.
Summarize visible evidence separately from interpretation. Include useful content IDs, URLs, titles or descriptions, authors, counts, and publish time when the user needs traceability.
For Douyin search results, include content_type when the user needs traceability.
For Douyin image/text search results, use returned images and treat video.media_type="audio" as an audio player resource rather than a video post.
For Kuaishou search results, include photo_id, share_url, author facts, and visible interaction counts when the user needs traceability.
微信扫一扫