1. Conduid
  2. Commerce
  3. Seym0n/tiktok-mcp
MCP server · Commerce

Seym0n/tiktok-mcp

Model Context Protocol (MCP) with TikTok integration

Unclaimed MIT last commit 6 months ago social
74Good

Scored 4 months ago · breakdown

About Seym0n/tiktok-mcp

Seym0n/tiktok-mcp is an MCP server published by Seym0n in the Commerce category: model Context Protocol (MCP) with TikTok integration. It has been installed 0 times through Conduid.

The repository has 134 stars and 20 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx tiktok-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Seym0n/tiktok-mcp

Powered by Claude · Grounded in docs

I know everything about Seym0n/tiktok-mcp. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v2.2.0v2.2.0 · 27 Feb 2026This release includes MCPB - a simpler way to install MCP extensions in Claude Desktop App. Full Changelog**: https://github.com/Seym0n/tiktok-mcp/commits/v2.2.0
2🚀 TikTok MCP v2 · 10 Jun 2025✨ New Features Search functionality: Added **tiktok_search** tool to search for TikTok videos by keywords, hashtags, or search terms with pagination support Enhanced post details: Updated **tiktok_get_post_details** to include Video ID and…
1.0🎉 First Release · 13 Mar 2025This is the release of TikTok MCP

README

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_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
  • Video ID
  • Creator username
  • Hashtags
  • Number of likes, shares, comments, views and bookmarks
  • Date of creation
  • Duration of the video
  • Available subtitles with language and source information

Input Parameters:

tiktok_search

Description:
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 results
  • search_uid (optional): Search session identifier for pagination

Install via MCPB (Easiest)

The easiest way to install the TikTok MCP in Claude Desktop is via the MCPB bundle — no cloning or building required.

  1. Download the latest tiktok-mcp.mcpb from the Releases page
  2. Open the .mcpb file — Claude Desktop will show an installation dialog
  3. Enter your TikNeuron API Key when prompted

That's it. Claude Desktop handles the rest automatically.

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"
      }
    }
  }
}

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Seym0n/tiktok-mcp

How do I install Seym0n/tiktok-mcp?

Run npx tiktok-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Seym0n/tiktok-mcp safe to use with an AI agent?

Its trust score is 74 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Seym0n/tiktok-mcp still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.