Looks up the available subtitles for a TikTok video. Returns the available subtitle options in different languages and formats (Automatic Speech Recognition, Machine Translation, Creator Captions).
Gets the subtitle content for a TikTok video. If no language code is provided, returns the automatic speech recognition subtitle.
Gets detailed information about a TikTok post including description, creator username, hashtags, engagement metrics (likes, shares, comments, views, bookmarks), creation date, and video duration.
The TikTok Integration MCP provides seamless access to TikTok content for AI applications. It allows you to analyze videos for virality factors, extract video content including subtitles in various languages, and interact with TikTok videos programmatically. This integration leverages the TikNeuron API to provide comprehensive TikTok data access.
The TikTok Integration MCP enables AI applications to access and analyze TikTok content. This integration is particularly useful for content creators, marketers, and researchers who want to understand TikTok trends, analyze video performance, or extract content from TikTok videos.
Before setting up the TikTok Integration MCP, ensure you have:
First, clone the TikTok MCP repository to your local machine:
git clone https://github.com/Seym0n/tiktok-mcp.git
Navigate to the cloned repository directory and install the required dependencies:
cd tiktok-mcp
npm install
Build the project to generate the necessary files:
npm run build
This will create the build/index.js
file that will be used by the MCP server.
To use the TikTok Integration MCP with Claude AI or other compatible applications, add the following configuration to your mcpServers
settings:
{
"mcpServers": {
"tiktok-mcp": {
"command": "node",
"args": [
"PATH_TO_TIKTOK_MCP/build/index.js"
],
"env": {
"TIKNEURON_MCP_API_KEY": "YOUR_TIKNEURON_API_KEY"
}
}
}
}
Make sure to replace:
PATH_TO_TIKTOK_MCP
with the actual path to your TikTok MCP installationYOUR_TIKNEURON_API_KEY
with your TikNeuron API keyOnce installed, you can use the TikTok Integration MCP to:
The MCP provides several tools that can be called from your AI application to interact with TikTok content. Each tool accepts specific parameters and returns structured data about TikTok videos.
If you encounter issues with the TikTok Integration MCP:
build/index.js
file existsFor additional support, visit the TikNeuron website or refer to the GitHub repository documentation.