Model Context Protocol (MCP) with TikTok integration
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"tiktok-mcp": {
"env": {
"TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"args": [
"path\\build\\index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The TikTok MCP integrates TikTok access into Claude AI and other apps via TikNeuron. This TikTok MCP allows you to - analyze TikTok videos to determine virality factors - get content from TikTok videos
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / entertainment
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
The official MCP Server for the Mux API
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
MCP Security Weekly
Get CVE alerts and security updates for Tiktok Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The TikTok MCP integrates TikTok access into Claude AI and other apps via TikNeuron. This TikTok MCP allows you to
Description:
Get the subtitle (content) for a TikTok video url. This is used for getting the subtitle, content or context for a TikTok video. If no language code is provided, the tool will return the subtitle of automatic speech recognition.
Input Parameters:
tiktok_url (required): TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/1234567890language_code (optional): Language code for the subtitle, e.g., en for English, es for Spanish, fr for French, etc.Description:
Get the details of a TikTok post. Returns the details of the video like:
Input Parameters:
tiktok_url (required): TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/1234567890, or just the video ID like 7409731702890827041Description:
Search for TikTok videos based on a query. Returns a list of videos matching the search criteria with their details including description, video ID, creator, hashtags, engagement metrics, date of creation, duration and available subtitles, plus pagination metadata for continuing the search.
Input Parameters:
query (required): Search query for TikTok videos, e.g., 'funny cats', 'dance', 'cooking tutorial'cursor (optional): Pagination cursor for getting more resultssearch_uid (optional): Search session identifier for paginationThe easiest way to install the TikTok MCP in Claude Desktop is via the MCPB bundle — no cloning or building required.
tiktok-mcp.mcpb from the Releases page.mcpb file — Claude Desktop will show an installation dialogThat's it. Claude Desktop handles the rest automatically.
For this TikTok MCP, you need
git clone https://github.com/Seym0n/tiktok-mcp.git
npm install
npm run build
This creates the file build\index.js
Add the following entry to mcpServers:
"tiktok-mcp": {
"command": "node",
"args": [
"path\\build\\index.js"
],
"env": {
"TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
}
and replace path with the path to TikTok MCP and XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX with TIkNeuron API Key
so that mcpServers will look like this:
{
"mcpServers": {
"tiktok-mcp": {
"command": "node",
"args": [
"path\\build\\index.js"
],
"env": {
"TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
}
}
}