SocialDataX 快手 Kuaishou MCP

ホステッド版の快手MCPで、ホットリスト、検索、詳細、コメント、返信、クリエイターリサーチに対応しています。

ドキュメント

快手 MCP | Kuaishou MCP | Kwai MCP

This public repository provides public connection docs and MCP metadata for a hosted 快手 MCP / Kuaishou MCP / Kwai MCP service by SocialDataX.

If you are looking for a 快手 MCP, Kuaishou MCP, or Kwai MCP for social media research workflows, this repository includes:

  • public MCP metadata and client configuration examples
  • the hosted streamable-http endpoint for clients that support remote MCP
  • an mcp-remote fallback example for command/stdio-only MCP clients

The business implementation is privately hosted. This repository exposes only the public connection surface for social media content intelligence workflows.

Search Aliases

Common search phrases for this MCP service:

  • 快手 MCP
  • 快手 热榜 MCP
  • 快手 数据 MCP
  • 快手 作品 MCP
  • 快手 评论 MCP
  • 快手 达人 MCP
  • Kuaishou MCP
  • Kuaishou hot search MCP
  • Kuaishou data MCP
  • Kuaishou work research MCP
  • Kuaishou comments MCP
  • Kuaishou creator MCP
  • Kwai MCP
  • Kwai data MCP

Service

  • Hosted MCP endpoint: https://mcp.socialdatax.com/kuaishou/mcp
  • Hosted transport: streamable-http
  • Authentication: Authorization: Bearer <SOCIALDATAX_API_KEY>
  • Product: SocialDataX / 社媒数据助手
  • Website: https://socialdatax.com
  • Registry name: com.52choujiang/kuaishou-insights
  • Future registry name: com.socialdatax/kuaishou-insights
  • Current public capability version: 0.1.2

Platform MCP

Use the hosted streamable-http endpoint directly from clients that support authenticated remote MCP. For clients that only support command/stdio MCP servers, use mcp-remote as a local compatibility proxy.

Workflow Scope

This MCP service is designed for social media content intelligence workflows. It does not provide account login, posting, editing, liking, commenting, or other account actions.

Supported workflows include:

  • Read the current Kuaishou / 快手 short-video hot search list.
  • Search Kuaishou works by natural-language keyword with optional page_token continuation; do not pass page.
  • Search Kuaishou users by natural-language keyword with optional page_token continuation before creator profile or work-list lookup; do not pass page.
  • Resolve a Kuaishou work page link, short link, or share text into structured work details.
  • Read work details when the caller already has a photo_id.
  • Fetch paginated first-level comments for comment analysis.
  • Fetch paginated replies under a first-level comment.
  • Read creator profile data from a non-empty user_id, profile link, short link, or share text. Live/fw-user profile shares are supported for profile data; successful results return a reusable non-empty user_id.
  • Fetch creator work lists from a non-empty user_id, or from a profile link, short link, or share text that resolves directly to a non-empty user_id. For live/fw-user profile shares, call creator profile first and use the returned non-empty user_id.
  • Submit a work video speech-to-text transcript task; submit tools 提交完成后最多短等 240 秒, and unfinished jobs should continue polling the same job_id until terminal.

Tools

ToolPublic purpose
kuaishou_get_hot_search_listFetch the current Kuaishou / 快手 short-video hot search list.
kuaishou_search_videosSearch Kuaishou works by natural-language keyword with optional page_token continuation; do not pass page.
kuaishou_search_usersSearch Kuaishou users by natural-language keyword with optional page_token continuation; do not pass page.
kuaishou_get_video_detail_by_photo_idFetch structured work details when the caller already has a photo_id.
kuaishou_get_video_detail_by_urlResolve a Kuaishou work page link, short link, or share text into structured work details.
kuaishou_get_video_comments_by_photo_idFetch paginated first-level comments when the caller already has a photo_id.
kuaishou_get_video_comments_by_urlFetch paginated first-level comments directly from a Kuaishou work page link, short link, or share text.
kuaishou_get_video_comment_replies_by_comment_idFetch paginated replies under a first-level comment by photo_id and comment_id.
kuaishou_get_user_info_by_user_idFetch creator profile data when the caller already has a non-empty user_id.
kuaishou_get_user_info_by_profile_urlResolve a Kuaishou profile link, including live/fw-user profile shares, short link, or share text into creator profile data; successful results return a reusable non-empty user_id.
kuaishou_get_user_posted_videos_by_user_idFetch a paginated list of works published by a creator when the caller already has a non-empty user_id.
kuaishou_get_user_posted_videos_by_profile_urlFetch a paginated list of works published by a creator from a profile link, short link, or share text that resolves directly to a non-empty user_id; for live/fw-user profile shares, call creator profile first and use the returned non-empty user_id.
kuaishou_submit_video_speech_text_by_video_urlSubmit a work video speech-to-text transcript task from a work page link, short link, or share text. 提交完成后最多短等 240 秒;未完成时继续查询同一个 job_id 直到终态.
kuaishou_submit_video_speech_text_by_photo_idSubmit a work video speech-to-text transcript task from a photo_id. 提交完成后最多短等 240 秒;未完成时继续查询同一个 job_id 直到终态.
kuaishou_get_video_speech_text_jobCheck a work video speech-to-text transcript job by job_id without creating a new task; each call waits up to 240 seconds. If unfinished, continue querying the same job_id until terminal. This v1 surface returns transcript plus content context, not summary.

Quick Start

For clients that support authenticated streamable-http, use the hosted endpoint directly:

{
  "mcpServers": {
    "socialdatax-kuaishou": {
      "type": "streamable_http",
      "url": "https://mcp.socialdatax.com/kuaishou/mcp",
      "headers": {
        "Authorization": "Bearer <SOCIALDATAX_API_KEY>"
      }
    }
  }
}

A ready-to-copy example is available in examples/streamable_http_config.json.

For command/stdio-only MCP clients, use mcp-remote:

{
  "mcpServers": {
    "socialdatax-kuaishou": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.socialdatax.com/kuaishou/mcp",
        "--header",
        "Authorization: Bearer <SOCIALDATAX_API_KEY>"
      ]
    }
  }
}

Claude Code can use remote HTTP directly:

claude mcp add --transport http socialdatax-kuaishou https://mcp.socialdatax.com/kuaishou/mcp --header 'Authorization: Bearer ${SOCIALDATAX_API_KEY}'

Persist SOCIALDATAX_API_KEY in the runtime environment or client Secret before restarting Claude Code.

Claude Desktop should use its remote MCP / Connectors UI when available. If a local configuration file in your version only supports command/stdio servers, use the mcp-remote fallback.

Client Examples

Configuration examples are available in examples:

API Key

Request or manage API access from the product website:

https://socialdatax.com

Use the key as a Bearer token in the Authorization request header. Do not commit real API Key values to code, docs, issues, or screenshots.

Directory Metadata

Public metadata files in this repository:

  • server-card.json: directory-oriented metadata for the hosted service. Official MCP Registry publishing uses the private source repo's registry/kuaishou/server.json for the current com.52choujiang/kuaishou-insights entry.
  • mcp.json: generic command/stdio fallback config using mcp-remote.
  • glama.json: Glama repository ownership metadata.
  • SUBMISSION_CHECKLIST.md: checklist for MCP directory submissions.

License

The files in this public repository are released under the MIT License. The license covers the public documentation and configuration examples in this repository only. It does not cover the managed service implementation, hosted infrastructure, or any private backend code outside this repository.