TikTok MCP

TikTok MCP

By Seym0n GitHub

Model Context Protocol (MCP) with TikTok integration

tiktok tiktok-report
Overview

What is TikTok MCP?

TikTok MCP is a Model Context Protocol that integrates TikTok access into Claude AI and other applications via TikNeuron, allowing users to analyze TikTok videos and interact with them.

How to use TikTok MCP?

To use TikTok MCP, clone the repository from GitHub, install the necessary dependencies, and set it up in Claude AI by adding the required configuration.

Key features of TikTok MCP?

  • Analyze TikTok videos to determine virality factors.
  • Retrieve content and subtitles from TikTok videos.
  • Interact with TikTok videos through chat.

Use cases of TikTok MCP?

  1. Analyzing trends and virality of TikTok content.
  2. Extracting subtitles for accessibility and translation.
  3. Engaging with TikTok content in AI applications.

FAQ from TikTok MCP?

  • What are the requirements to use TikTok MCP?

You need NodeJS v18 or higher, Git, and a TikNeuron account with an MCP API Key.

  • Is TikTok MCP free to use?

The usage of TikTok MCP may depend on the TikNeuron API's pricing and terms.

  • Can I use TikTok MCP for any TikTok video?

Yes, as long as you have the correct TikTok video URL.

Content

TikTok MCP

image (12)

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
  • chat with TikTok videos

Available Tools

tiktok_available_subtitles

Description:
Looks up the available subtitle, i.e., content for a TikTok video. This is used for looking up if there is any content (subtitle) available to a TikTok video. Returns the available subtitle for the video which can be in different languages and different formats like Automatic Speech Recognition, Machine Translation or Creator Captions and different languages.

Input Parameters:

tiktok_get_subtitle

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_get_post_details

Description:
Get the details of a TikTok post. Returns the details of the video like:

  • Description
  • Creator username
  • Hashtags
  • Number of likes, shares, comments, views and bookmarks
  • Date of creation
  • Duration of the video

Input Parameters:

Requirements

For this TikTok MCP, you need

Setup

  1. Clone the repository
git clone https://github.com/Seym0n/tiktok-mcp.git
  1. Install dependencies
npm install
  1. Build project
npm run build

This creates the file build\index.js

Using in Claude AI

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"
      }
    }
  }
}
No tools information available.
No content found.