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 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 provide
Add this skill
npx mdskills install Seym0n/tiktok-mcpWell-documented TikTok integration with three useful tools but permissions appear over-scoped
1# <img src="https://cdn.worldvectorlogo.com/logos/tiktok-icon-2.svg" height="32"> TikTok MCP23456The TikTok MCP integrates TikTok access into Claude AI and other apps via TikNeuron. This TikTok MCP allows you to7- analyze TikTok videos to determine virality factors8- get content from TikTok videos9- chat with TikTok videos1011## Available Tools1213### tiktok_get_subtitle1415**Description:**16Get 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.1718**Input Parameters:**19- `tiktok_url` (required): TikTok video URL, e.g., https://www.tiktok.com/@username/video/1234567890 or https://vm.tiktok.com/123456789020- `language_code` (optional): Language code for the subtitle, e.g., en for English, es for Spanish, fr for French, etc.2122### tiktok_get_post_details2324**Description:**25Get the details of a TikTok post. Returns the details of the video like:26- Description27- Video ID28- Creator username29- Hashtags30- Number of likes, shares, comments, views and bookmarks31- Date of creation32- Duration of the video33- Available subtitles with language and source information3435**Input Parameters:**36- `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 74097317028908270413738### tiktok_search3940**Description:**41Search 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.4243**Input Parameters:**44- `query` (required): Search query for TikTok videos, e.g., 'funny cats', 'dance', 'cooking tutorial'45- `cursor` (optional): Pagination cursor for getting more results46- `search_uid` (optional): Search session identifier for pagination4748## Requirements4950For this TikTok MCP, you need51- NodeJS v18 or higher (https://nodejs.org/)52- Git (https://git-scm.com/)53- TikNeuron Account and MCP API Key (https://tikneuron.com/tools/tiktok-mcp)5455## Setup56571. Clone the repository58```59git clone https://github.com/Seym0n/tiktok-mcp.git60```61622. Install dependencies63```64npm install65```66673. Build project68```69npm run build70```7172This creates the file `build\index.js`7374## Using in Claude AI7576Add the following entry to `mcpServers`:7778```79"tiktok-mcp": {80 "command": "node",81 "args": [82 "path\\build\\index.js"83 ],84 "env": {85 "TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"86 }87}88```8990and replace path with the `path` to TikTok MCP and `XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX` with TIkNeuron API Key9192so that `mcpServers` will look like this:9394```95{96 "mcpServers": {97 "tiktok-mcp": {98 "command": "node",99 "args": [100 "path\\build\\index.js"101 ],102 "env": {103 "TIKNEURON_MCP_API_KEY": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"104 }105 }106 }107}108```109
Full transparency — inspect the skill content before installing.