Overview
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.
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.
- Analyze TikTok videos to determine virality factors. - Retrieve content and subtitles from TikTok videos. - Interact with TikTok videos through chat.
- Analyzing trends and virality of TikTok content.
- Extracting subtitles for accessibility and translation.
- Engaging with TikTok content in AI applications.
Add to your AI client
Use these steps to connect TikTok MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"tiktok-mcp-seym0n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"tiktok-mcp-seym0n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"tiktok-mcp-seym0n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"tiktok-mcp-seym0n": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"tiktok-mcp-seym0n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"tiktok-mcp-seym0n": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-tiktok-mcp-seym0n"
]
}
}
}FAQ
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.