SocialDataX 抖音 Douyin MCP
抖音 MCP | Douyin MCP
This public repository provides public connection docs and MCP metadata for a hosted 抖音 MCP / Douyin MCP service by SocialDataX.
If you are looking for a Douyin MCP or 抖音 MCP for social media research workflows, this repository includes:
public MCP metadata and client configuration examples
the hosted
streamable-httpendpoint for clients that support remote MCPan
mcp-remotefallback 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抖音 达人 MCPDouyin MCPDouyin data MCPDouyin hot search MCPDouyin work research MCPDouyin comments MCPDouyin creator MCP
Related MCP server: SocialDataX 小红书 Xiaohongshu XHS RedNote MCP
Service
Hosted MCP endpoint:
https://mcp.socialdatax.com/douyin/mcpHosted transport:
streamable-httpAuthentication:
Authorization: Bearer <SOCIALDATAX_API_KEY>Product:
SocialDataX/社媒数据助手Website and API Key access: https://socialdatax.com/ai?from=github
Registry name:
com.52choujiang/douyin-insightsFuture registry name:
com.socialdatax/douyin-insightsCurrent public capability version:
0.2.6. The hosted productiontools/list, server card, and public GitHub repository are synchronized at0.2.6with all 20 tracked tools. The npm stdio bridge is published asdouyin-mcp@0.2.12and connects to the same hosted surface. The official Registry latest remains0.2.5pending publication of0.2.6.
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.
npm stdio bridge
Requires Node.js 20.18.1 or later.
Command/stdio-only MCP clients can install and start the bridge directly from npm:
{
"mcpServers": {
"socialdatax-douyin": {
"command": "npx",
"args": ["-y", "douyin-mcp"],
"env": {
"SOCIALDATAX_API_KEY": "<SOCIALDATAX_API_KEY>"
}
}
}
}The package only forwards local stdio MCP messages to the hosted SocialDataX Douyin endpoint. It does not contain the private service implementation or store the API Key.
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:
Query the current API Key account's SocialDataX points balance / 积分余额、剩余积分或点数.
Read the Douyin / 抖音 hot search list.
Search Douyin works by keyword with optional paging and filters.
Search products in Douyin global search with optional paging and stable filters; results include normalized product and SKU data.
Search Douyin creators/accounts by keyword with optional paging and filters.
Resolve a Douyin content page link, short link, or share text into structured work details.
Read work details when the caller already has an
aweme_id.Fetch paginated first-level comments for comment analysis.
Fetch paginated replies under a first-level comment. If the user supplies a complete, valid
aweme_idand first-levelcomment_idpair, use it directly. If anaweme_id, work link or share text is available but a required ID is missing, fetch first-level comments first; without a work locator, ask the user. Do not use a reply item's owncomment_idas the first-levelcomment_id; bothaweme_idandcomment_idare required. Usepage_tokento continue pagination.Read creator profile data from a profile link, short link, share text, or
sec_user_id.Fetch creator work lists from a profile link, short link, share text, or
sec_user_id.Fetch creator short-drama / series lists from a profile link, short link, share text, or
sec_user_id.Submit a work video speech-to-text transcript task; the submit call may wait up to 240 seconds, and unfinished jobs should continue polling the same
job_iduntil terminal.
Tools
Tool | Public purpose |
| Query the current API Key account's SocialDataX points balance / 积分余额、剩余积分或点数. |
| Get the current Douyin / 抖音 main hot search list. |
| Search Douyin video and image/text works by search term. Use this tool when the user needs works found by a search term; when a work link or |
| Search products in Douyin global search with sorting, price, service, and selling-point filters. Do not pass product URLs, |
| Search Douyin users, accounts, creators, or influencers by search term. Use this tool when the user needs users found by a search term; when |
| Fetch structured video or image/text work details when the caller already has an |
| Resolve a Douyin content page link, short link, or share text into structured video or image/text work details. |
| Fetch paginated first-level comments when the caller already has an |
| Fetch paginated first-level comments directly from a Douyin content page link, short link, or share text. |
| Fetch paginated replies under a first-level comment. If the user supplies a complete, valid |
| Fetch creator profile data when the caller already has a |
| Fetch creator profile data when the caller has the public Douyin account ID / |
| Resolve a Douyin profile link, short link, or share text into creator profile data. |
| Fetch a paginated list of works published by a creator when the caller already has a |
| Fetch a paginated list of works published by a creator from a profile link, short link, or share text. |
| Fetch creator short-drama / series lists when the caller already has a |
| Fetch creator short-drama / series lists from a profile link, short link, or share text. |
| Submit a work video speech-to-text transcript task from a work page link, short link, or share text. The submit call may wait up to 240 seconds; if unfinished, continue polling the same |
| Submit a work video speech-to-text transcript task from an |
| Check a work video speech-to-text transcript job using a valid |
Quick Start
For clients that support authenticated streamable-http, use the hosted endpoint directly:
{
"mcpServers": {
"socialdatax-douyin": {
"type": "streamable_http",
"url": "https://mcp.socialdatax.com/douyin/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-douyin": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.socialdatax.com/douyin/mcp",
"--header",
"Authorization: Bearer ${SOCIALDATAX_API_KEY}"
],
"env": {
"SOCIALDATAX_API_KEY": "<SOCIALDATAX_API_KEY>"
}
}
}
}Claude Code can use remote HTTP directly:
claude mcp add --transport http socialdatax-douyin https://mcp.socialdatax.com/douyin/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/ai?from=github
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/douyin/server.jsonfor the currentcom.52choujiang/douyin-insightsentry.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.
This server cannot be installed
Maintenance
Related MCP Connectors
Douyin hot search, work/user search, work details, comments/replies, profiles, series, transcript.
Public TikTok profiles, videos, comments and keyword search as JSON. No developer account.
Unofficial TikTok API & scraper: creator analytics, video data, comments, search. x402, no API key.
Get social media data from Instagram and TikTok: profiles, posts, videos, comments, and more.
Related MCP Servers
- AlicenseDqualityDmaintenanceProvides access to Douyin (TikTok China) API for searching videos, retrieving user profiles, posts, comments, music, challenges, live streams, and hot trends through the Douyin platform.79MIT
- AlicenseAqualityBmaintenanceRead-only MCP bridge for Xiaohongshu / XHS / RedNote social media insights: search notes, get note details and comments, creator profiles, and creator note lists.2149281MIT
- AlicenseAqualityFmaintenanceEnables to search, analyze, and export Douyin (TikTok China) video and user data, including interaction metrics, content length, and keyword trends.823MIT
- AlicenseNot gradedqualityBmaintenanceKuaishou MCP by SocialDataX for hot search, work and user search, work details, comments and replies, creator profiles, and video speech-to-text transcripts.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DevinChen2014/douyin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server