Delv
CommunityStale· 3mo3.7by Seym0n

TikTok MCP

Analyses TikTok videos, extracts subtitles, retrieves post details, and searches content via the TikNeuron API.

C
Safety & Trust

Delv Safety Grade: C

Score 58/100 · assessed 2026-04-28

Maintainer40
Permissions75
Supply chain45
Transparency65
Incidents100

TikTok MCP is a community server by solo developer Seym0n that proxies TikTok data through the third-party TikNeuron API. The maintainer appears to be a single individual with limited public track record, creating meaningful bus factor risk. The server requires an API key for TikNeuron, introducing a dependency on an external commercial service whose terms and data handling practices are outside your control. Installation is clone-and-build with no package registry distribution, making supply chain verification harder. Permissions are reasonably scoped to read-only API calls and outbound network access, which limits blast radius. The repository is open source with basic documentation, though transparency around TikNeuron's own security posture is limited. No known security incidents, but the combination of solo maintenance, third-party API dependency, and manual installation warrants caution for production use.

Lethal Trifecta (prompt-injection exposure)

TRIFECTA RISK
All three axes present. This server can read private data, ingest attacker-controlled content, and send data outbound. A poisoned input (a GitHub issue, an email, a webpage) can exfiltrate secrets via this chain. Only install with auditing; avoid on shared or cloud agents.
Private dataYes
Reads secrets, credentials, private files
Untrusted inputYes
Ingests web pages, PRs, issues, emails
External commsYes
Can send data outbound

Comment streams and DMs are mixed-trust; posting and DM-replying are outbound. Trifecta.

Green flags

  • Read-only API operations limit potential damage
  • Open source repository allows code inspection
  • Scoped to single domain (TikTok content retrieval)
  • No filesystem or shell access requested

Red flags

  • Solo maintainer with limited public track record and bus factor risk
  • Requires third-party TikNeuron API key with unclear data handling terms
  • No package registry distribution, clone-and-build only
  • TikNeuron API security posture and compliance unknown
  • Sparse commit history and minimal community review

Permissions requested

Outbound networkAccess secretsExternal LLM call
Assessed by Delv Editorial using public metadata. Grades are advisory and update as the ecosystem changes. They do not replace your own review of permissions and code before granting an agent access to sensitive systems.

Install

npm install && npm run build
Env vars needed: TIKNEURON_API_KEY

Review

TikTok MCP hooks Claude into the TikNeuron API, letting you pull video transcripts, post metadata, and search TikTok content without leaving your editor. It's built for anyone who needs to analyse TikTok at scale: social media managers tracking trends, researchers pulling transcripts for sentiment analysis, or marketers reverse-engineering what's working in their niche. The core workflow is straightforward. You point Claude at a TikTok URL, and it returns the full subtitle track, view count, engagement metrics, and creator details. The search tool lets you query by keyword or hashtag and returns a ranked list of posts with all the same metadata. I'd reach for this when I'm building a competitor analysis report or need to pull dozens of transcripts for a content brief without manually clicking through the app. The TikNeuron API dependency is both a strength and a constraint. You're not scraping, so it's more reliable than DIY solutions, but you're paying per request and trusting a third-party service. The repo doesn't document rate limits or pricing tiers, so you'll need to check TikNeuron's docs before committing to a heavy workload. The server itself is minimal: four tools, no caching, no batch operations. If you need to process hundreds of videos, you'll be making hundreds of API calls. Setup is typical for a Node-based MCP: clone, install, build, drop your API key in the config. The repo assumes you know your way around npm and Claude Desktop's config file. There's no error handling guidance, so if your API key is wrong or you hit a rate limit, you'll be debugging blind. The README lists use cases but skips example prompts, which would help newcomers understand what queries actually work. This is a single-purpose tool. If your work involves TikTok data and you already have a TikNeuron subscription, it's a clean way to pipe that into Claude. If you're hoping for free access or broader social media coverage, look elsewhere.
Verdict

Install this if you're already using TikNeuron and need TikTok data inside Claude for research or content work. Skip it if you don't have an API key budget or need more than basic transcript and metadata extraction.

Good at

  • Pulls full subtitle transcripts and engagement metrics from TikTok URLs in one request.
  • Search tool lets you query by keyword or hashtag and returns ranked results with metadata.
  • No scraping: uses a proper API, so it's more stable than browser automation hacks.
  • Minimal setup if you already have a TikNeuron account and know npm basics.

Watch out

  • Requires a paid TikNeuron API key with per-request charges, which aren't documented in the repo.
  • No caching or batch processing, so analysing many videos means many billable API calls.
  • Error handling and rate limit behaviour aren't explained, leaving you to debug blind.
  • README skips example prompts, so new users have to guess what queries actually work.

Use cases

  • viral content research
  • transcript extraction
  • creator analytics
  • trend spotting

Getting started

1. Clone the repo and run `npm install && npm run build` to compile the server. 2. Sign up for a TikNeuron API key at their site and note your key. 3. Add the server to your Claude Desktop config with the path to the built server and set `TIKNEURON_API_KEY` in the environment variables block. 4. Restart Claude Desktop and ask it to 'analyse this TikTok video' with a URL to verify the connection. 5. Watch your API usage: TikNeuron charges per request, and there's no built-in caching or batching in this server.

Works with

Claude DesktopClaude CodeCursor

Similar MCPs