superagnt_
// data source

TikTok data for AI agents

Creator profiles, video stats and keyword search across videos and accounts, as structured JSON. One key, no TikTok developer program to apply to.

opt in // data:tiktokover mcp or http

Copy the setup prompt.
Your agent does the rest.

works with any agent+ 8 more
Fetch and execute the appropriate instructions to set me up for superagnt_ from https://mcp.superagnt.com/agent-setup/prompt.md
or follow the detailed setup instructions

» once it is connected, run this so your agent can switch the source on itself.

agnt_tools_enable({ families: ['data:tiktok'] })
01// what is inside

Everything your agent can pull

Creator profile

Public creator details by username: follower and following counts, total likes, video count, bio and verification.

Full account feed

Every video on an account, with a continuation token so an agent can page back through the whole history.

Video detail

One video by id with play, like, comment and share counts, plus description, sound and author.

Video search

Keyword search across videos, which is the surface a trend-watching agent needs to see what is being posted right now.

Account search

Keyword search across accounts, for finding creators in a niche instead of starting from a handle you already know.

Collections

Videos inside a creator collection, useful when a brand groups its catalogue on-profile.

tool names07as your agent sees them
data_tiktok_user_s_detailsdata_tiktok_user_s_videosdata_tiktok_user_s_videos_continuationdata_tiktok_video_detailsdata_tiktok_search_videosdata_tiktok_search_accountsdata_tiktok_collection_videos_details
02// what it gets used for

Three jobs it can start on today

01

Influencer shortlist from a keyword

The agent searches videos for your product category, collects the creators behind the top results, pulls each profile, and ranks them on median views per video rather than follower count.

02

Trend watch on a schedule

A cron schedule runs a video search every few hours, writes new videos to the workspace database, and pings Slack when a sound or format crosses a threshold you set.

03

Post-campaign reporting

After a creator drop, the agent walks each creator feed, finds the sponsored videos, and reports views, likes and comments per post against what you paid.

03// one call

What comes back

Your agent reads this response directly, with no parsing layer of your own in between. The same JSON comes back over plain HTTP, so a cron job or a script sees exactly what the agent sees.

https://mcp.superagnt.com/mcptool call
→ calldata_tiktok_user_s_details
{
  "username": "northloopcoffee"
}
← resultjson
{
  "user": {
    "id": "7100000000000000001",
    "username": "northloopcoffee",
    "nickname": "North Loop Coffee",
    "verified": false,
    "follower_count": 128400,
    "following_count": 87,
    "video_count": 412,
    "heart_count": 2140000
  },
  "...": "signature, avatar urls, region"
}
» trimmed for length. the shape is the shape your agent receives.
04// cost

What it costs to run

per call
priced per call

Calls in TikTok are priced individually and deducted from your credit balance, and only a successful call is billed. The per-endpoint figures live in the reference docs, and every billable response reports its own cost in meta.costCents.

One balance covers this source and every other one, so there is no per-source subscription and no upstream account of your own to keep alive.

how credits work →
05// questions

Before you wire it up

01Do I need TikTok API access?

No. There is no developer application, no app review and no OAuth. One key and one credit balance cover it.

02How does my agent get these tools?

Connect it to https://mcp.superagnt.com/mcp and call agnt_tools_enable with data:tiktok. The TikTok tools show up in the next tools/list.

03Can it page through an entire account?

Yes. data_tiktok_user_s_videos returns a continuation token. Feed it to data_tiktok_user_s_videos_continuation and keep going until no token comes back.

04How is usage billed?

Calls consume platform credits based on provider and endpoint. See credit costs in the dashboard and on each endpoint page.

05What about rate limits?

Rate limits depend on your plan. The API returns standard HTTP status codes; retry with backoff on 429 responses.

get your key

Point your client at https://mcp.superagnt.com/mcp and your agent has this, plus everything else on one balance.

Start free
06// keep going

The rest of what your agent can reach