
How to add TikTok MCP to Claude Desktop
Search TikTok, pull post details, and extract video subtitles into your AI agent via the TikNeuron API. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.
Last updated June 14, 2026 ยท 174โ ยท stdio ยท apikey
Claude Desktop config for TikTok MCP
git clone https://github.com/Seym0n/tiktok-mcp.git && cd tiktok-mcp && npm install && npm run build{
"mcpServers": {
"tiktok-mcp": {
"command": "node",
"args": [
"<path-to-tiktok-mcp>/build/index.js"
],
"env": {
"TIKNEURON_MCP_API_KEY": "<your-tikneuron-api-key>"
}
}
}
}Setup steps
- 1Open Claude Desktop โ Settings โ Developer โ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
- 2Paste the TikTok MCP config below under the top-level "mcpServers" key.
- 3Fill in any placeholder secrets (API keys, paths) in the snippet.
- 4Save the file, then fully quit and reopen Claude Desktop.
- 5Open a chat and confirm TikTok MCP's tools appear under the ๐ tools menu.
Before you start
- Node.js v18 or higher
- Git (to clone and build the server)
- TikNeuron account and MCP API key from tikneuron.com/tools/tiktok-mcp
What TikTok MCP can do in Claude Desktop
tiktok_get_subtitleGet subtitle/caption text for a TikTok video URL; falls back to automatic speech recognition, optional language code.
tiktok_get_post_detailsGet post details: description, creator, hashtags, likes/shares/comments/views/bookmarks, creation date, duration, available subtitles.
tiktok_searchSearch TikTok videos by query with engagement metrics and pagination via cursor and search_uid.
Security
Read-only access to public TikTok data, but every query is routed through TikNeuron's servers with your API key, so treat prompts and URLs as shared with that third party. The key sits in plain text in your MCP config env; TikNeuron is a paid service with per-request credits.
TikTok MCP + Claude Desktop FAQ
Where is the Claude Desktop config file?
Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the TikTok MCP config there under the "mcpServers" key and restart the client.
Is TikTok MCP safe to use with Claude Desktop?
Read-only access to public TikTok data, but every query is routed through TikNeuron's servers with your API key, so treat prompts and URLs as shared with that third party. The key sits in plain text in your MCP config env; TikNeuron is a paid service with per-request credits.
Is TikTok MCP free to use?
The server code is MIT-licensed and free, but it requires a TikNeuron API key, and TikNeuron is a paid third-party service with request credits. TikTok data flows through TikNeuron's infrastructure, not directly from TikTok.
Do I need a TikTok account or login?
No. The server only reads public TikTok content through the TikNeuron API, so no TikTok credentials are involved. You only authenticate against TikNeuron.
Can it download TikTok videos?
No. It retrieves text and metadata only: subtitles (uploaded or ASR-generated), post details, and search results. For video files you'd need a different tool.