Back to MCP Directory
TikTok
Model Context Protocol moderate risk

TikTok

The TikTok MCP enables analysis, content extraction, and interaction with TikTok videos via tools for retrieving subtitles and post details, and searching for videos.

Connections & Capabilities

Connects To

GitHub

Capabilities

read

Quickstart

Install

npm install
```

Config

{
  "mcpServers": {
    "tiktok-mcp": {
      "command": "node",
      "args": [
        "path\\build\\index.js"
      ],
      "env": {
        "TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
      }
    }
  }
}

Exposed MCP Tools (3)

safe
tiktok_get_subtitle

Retrieves the subtitle content for a specified TikTok video URL.

Read-only operation; retrieves existing subtitle data.

safe
tiktok_get_post_details

Fetches detailed information about a TikTok post, including metadata and engagement metrics.

Read-only operation; retrieves existing post details.

safe
tiktok_search

Searches for TikTok videos based on a provided query.

Read-only operation; performs a search and returns video results.

Safety Assessment

The TikTok MCP is relatively safe for read-only operations like analyzing video content and metadata. However, the risk of API key compromise and the potential for exposure to harmful content should be considered. It's crucial to protect the API key and implement content filtering mechanisms where appropriate.

  • Read-only access to TikTok video content and metadata.
  • No direct modification of TikTok platform data.
  • Relies on TikTok's API for data retrieval, inheriting its security measures.
  • API key authentication adds a layer of access control.
  • Potential for information leakage if API key is compromised.
  • Dependency on external TikTok API introduces availability risks.
  • Data retrieved could contain misinformation or harmful content.
  • Lack of explicit sandboxing for tool execution.