tiktok-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TIKTOK_CLIENT_KEY | No | TikTok API client key (optional for public scraping) | |
| TIKTOK_ACCESS_TOKEN | No | TikTok API access token (optional for public scraping) | |
| TIKTOK_CLIENT_SECRET | No | TikTok API client secret (optional for public scraping) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_videosC | Search for TikTok videos by keyword |
| get_trending_hashtagsB | Get trending hashtags on TikTok |
| get_trending_videosC | Get trending/popular videos on TikTok |
| get_user_infoB | Get TikTok user profile information |
| get_user_videosC | Get videos from a TikTok user's profile |
| get_video_detailsA | Get detailed information about a specific TikTok video |
| search_hashtagB | Search videos by hashtag |
| search_usersC | Search for TikTok users |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Most tools have clearly distinct purposes (trending, user info, search, video details). The main potential confusion is between get_trending_videos and search_videos, as both return videos but one is specifically trending; descriptions help disambiguate.
All tools follow a consistent verb_noun pattern in snake_case (get_*, search_*), making them predictable and easy to understand.
8 tools is appropriate for a TikTok MCP server, covering trending, user, video details, and search without being overwhelming or too sparse.
The tool set covers core read operations (trending, user, video, search) for TikTok. Minor gaps exist (e.g., no hashtag metadata, no posting or interaction tools), but they are reasonable given typical read-only MCP servers.