MCP Directory

How to add TikTok MCP to Cursor

Search TikTok, pull post details, and extract video subtitles into your AI agent via the TikNeuron API. Paste the config into ~/.cursor/mcp.json and restart Cursor.

Last updated June 14, 2026 · 174 · stdio · apikey

Cursor 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

  1. 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
  2. 2Paste the TikTok MCP config below into the "mcpServers" object.
  3. 3Fill in placeholder secrets, then save.
  4. 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
  5. 5Ask Cursor to use one of TikTok MCP's tools to confirm it's connected.

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 Cursor

tiktok_get_subtitle

Get subtitle/caption text for a TikTok video URL; falls back to automatic speech recognition, optional language code.

tiktok_get_post_details

Get post details: description, creator, hashtags, likes/shares/comments/views/bookmarks, creation date, duration, available subtitles.

tiktok_search

Search 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 + Cursor FAQ

Where is the Cursor config file?

Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the TikTok MCP config there under the "mcpServers" key and restart the client.

Is TikTok MCP safe to use with Cursor?

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.

View repo Full TikTok MCP page