Skip to main content
Glama
abdouldotdev

tiktok-downloader-mcp

by abdouldotdev

📱 TikTok Media Downloader & Analytics (CLI & MCP Server)

npm version License: MIT

All-in-one TikTok extraction suite: Run it directly from your terminal as a Standalone CLI tool (no AI required) or connect it as a Model Context Protocol (MCP) Server for AI assistants (Claude Code, Claude Desktop, Cursor, Windsurf, Antigravity).

Extract, analyze, and bulk-download TikTok HD videos (.mp4) and photo slideshows/carousels in original quality without watermarks, organized into structured date folders (YYYY-MM-DD_<id>) with comprehensive account engagement analytics.


📑 Table of Contents


Related MCP server: TikTok MCP Server

✨ Key Features

  • Dual Execution: Use directly in your terminal via npx or integrate as an MCP server with LLMs.

  • 🎥 HD No-Watermark Videos: Download high-resolution .mp4 video files with original cover thumbnails.

  • 📸 HD No-Watermark Photos: Extract full-resolution original photos and carousel slides.

  • 📁 Date-Based Organization: Every post is filed under YYYY-MM-DD_<id>/.

  • 📊 Rich Engagement Analytics:

    • Total Views (play_count)

    • Total Likes (digg_count)

    • Total Comments (comment_count)

    • Total Shares (share_count)

    • Total Favorites / Saves (collect_count)

    • Total Downloads (download_count)

    • Average Engagement Rate (%)

    • Top Performing Posts (Most viewed, most liked, most shared, most commented)

  • 📝 Dual-Layer JSON Summaries:

    • account_summary.json & account_activity.json in the root account directory.

    • post.json & account_activity_recap.json inside every single post folder.

  • 🚀 Zero Login / Cookies Needed: Works seamlessly out of the box with public TikTok endpoints.


🖥️ Part 1: Standalone CLI Usage (No AI Needed)

You can run the downloader in your terminal without any AI assistant or configuration.

Installation & Execution Options

# Option A: One-liner via NPX (No installation needed)
npx tiktok-downloader-mcp <arguments>

# Option B: Global NPM install
npm install -g tiktok-downloader-mcp
tiktok-downloader-mcp <arguments>

# Option C: Local Git Clone
git clone https://github.com/abdouldotdev/tiktok-downloader-mcp.git
cd tiktok-downloader-mcp && npm install && npm run build
node dist/index.js <arguments>

Case 1: Single Photo Slideshow

Downloads all slides in full resolution and saves metadata:

npx tiktok-downloader-mcp "https://www.tiktok.com/@username/photo/7405928371928371234"

Generated structure:

tiktok_downloads/
  └── username/
      └── 2026-08-16_7405928371928371234/
          ├── slide_01.jpg
          ├── slide_02.jpg
          ├── slide_03.jpg
          ├── cover.jpg
          └── post.json

Case 2: Single HD Video (MP4)

Downloads the unwatermarked HD video and its cover thumbnail:

npx tiktok-downloader-mcp "https://www.tiktok.com/@username/video/7106594312292453675"

Generated structure:

tiktok_downloads/
  └── username/
      └── 2026-08-15_7106594312292453675/
          ├── video.mp4     # Clean HD video without watermark
          ├── cover.jpg     # Video thumbnail
          └── post.json     # Views, likes, comments, sound metadata

Shortened mobile URLs are automatically resolved:

npx tiktok-downloader-mcp "https://vm.tiktok.com/ZMhNxxxx/"

Case 4: Bulk Profile Download (Everything)

Scans a profile, downloads both photos and videos, and computes total account engagement analytics:

# Download recent 50 posts (default):
npx tiktok-downloader-mcp @username

# Download recent 20 posts:
npx tiktok-downloader-mcp @username --max 20

# Download ALL posts from the profile:
npx tiktok-downloader-mcp @username --max all

Case 5: Bulk Profile - Photos Only

Filters out standalone videos and downloads only photo slideshows / carousels:

npx tiktok-downloader-mcp @username --media photos
# or:
npx tiktok-downloader-mcp @username --photos-only --max 30

Case 6: Bulk Profile - Videos Only

Filters out photo slideshows and downloads only HD MP4 video posts:

npx tiktok-downloader-mcp @username --media videos
# or:
npx tiktok-downloader-mcp @username --videos-only --max 30

Case 7: Custom Output Directory

Specify where files should be stored:

npx tiktok-downloader-mcp @username --out "/Users/me/Desktop/MyTikTokMedia"

CLI Flags Reference

Flag

Values

Default

Description

<target>

@username | url

Required

Profile username, profile URL, or direct post URL

--media

all | photos | videos

all

Filter media types to download

--photos-only

-

false

Shortcut for --media photos

--videos-only

-

false

Shortcut for --media videos

--max

number | all

50

Maximum number of posts to fetch

--out

path

./tiktok_downloads

Target output directory on your system

--help, -h

-

-

Display help menu


🤖 Part 2: Model Context Protocol (MCP) Setup

Connect the server to an AI assistant to let the LLM extract, analyze, and download TikTok content for you via natural language.

MCP Configuration by Platform

# Add via NPX:
claude mcp add tiktok-downloader -- npx -y tiktok-downloader-mcp

# Or directly from GitHub:
claude mcp add tiktok-downloader -- npx -y github:abdouldotdev/tiktok-downloader-mcp

Check status inside Claude Code:

/mcp

2. Claude Desktop

Add to your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "tiktok-downloader": {
      "command": "npx",
      "args": ["-y", "tiktok-downloader-mcp"]
    }
  }
}

3. Cursor & Windsurf

Add to .cursor/mcp.json or project .mcp.json:

{
  "mcpServers": {
    "tiktok-downloader": {
      "command": "npx",
      "args": ["-y", "tiktok-downloader-mcp"]
    }
  }
}

4. Antigravity CLI

agy mcp add tiktok-downloader -- npx -y tiktok-downloader-mcp

MCP Tools Reference

Tool

Purpose

Parameters

Natural Language Example

tiktok_extract_post

Extracts unwatermarked media URLs, audio, and metrics without saving files.

url (string)

"Extract the images, audio, and view count from this link: https://www.tiktok.com/@user/photo/123"

tiktok_get_user_posts

Lists recent post IDs, upload dates, and URLs for a profile.

username (string), max (number)

"List the last 15 posts published by @username with their dates."

tiktok_download_post

Downloads a single post (photos or video) to a date folder with post.json.

url (string), output_dir (string)

"Download this TikTok video in HD to my downloads folder."

tiktok_download_user_media

Bulk downloads videos/photos into date folders and creates global account_summary.json.

username (string), max (number), output_dir (string), media_type ("all"|"photos"|"videos")

"Download all photo carousels from @username and summarize their engagement."

tiktok_get_user_analytics

Computes account totals, averages, engagement rate, and top posts without downloading files.

username (string), max (number)

"Analyze the engagement rate and top performing posts of @username."


📊 Metadata & Analytics Schemas

1. account_summary.json (Account Level)

Saved at the root of the user folder (tiktok_downloads/<username>/account_summary.json):

{
  "account": {
    "username": "example_user",
    "nickname": "Creator Name",
    "user_id": "7582772389835113485",
    "avatar": "https://.../avatar.jpeg",
    "profile_url": "https://www.tiktok.com/@example_user"
  },
  "activity_totals": {
    "total_posts_analyzed": 50,
    "total_slideshows_count": 32,
    "total_videos_count": 18,
    "total_images_count": 312,
    "total_views": 1066188,
    "total_likes": 17388,
    "total_comments": 6078,
    "total_shares": 410,
    "total_favorites_saves": 2579,
    "total_downloads": 74,
    "total_all_interactions": 26455
  },
  "performance_averages": {
    "avg_views_per_post": 21324,
    "avg_likes_per_post": 348,
    "avg_comments_per_post": 121.6,
    "avg_shares_per_post": 8.2,
    "avg_favorites_per_post": 51.6,
    "avg_engagement_rate_percent": 2.48
  },
  "top_performing_posts": {
    "most_viewed": { "id": "7652520719259159822", "date": "2026-06-18", "views": 461748, "type": "slideshow" },
    "most_liked": { "id": "7652520719259159822", "date": "2026-06-18", "likes": 5558, "type": "slideshow" }
  },
  "updated_at": "2026-08-18T15:57:52.024Z"
}

2. post.json (Post Level)

Saved inside each individual post folder (tiktok_downloads/<username>/YYYY-MM-DD_<id>/post.json):

{
  "post_details": {
    "id": "7674774636999003406",
    "user": "example_user",
    "author": { "uniqueId": "example_user", "nickname": "Creator Name" },
    "title": "Summer outfit ideas #fashion #summer",
    "media_type": "slideshow",
    "date": "2026-08-16",
    "timestamp": 1787049600,
    "url": "https://www.tiktok.com/@example_user/video/7674774636999003406",
    "slides_count": 10,
    "stats": {
      "views": 1120,
      "likes": 21,
      "comments": 17,
      "shares": 1,
      "favorites": 5,
      "downloads": 0,
      "total_interactions": 44,
      "engagement_rate_percent": 3.93
    },
    "music": {
      "id": "7644346595656730640",
      "title": "Original Sound",
      "author": "Sound Creator",
      "duration": 60,
      "play_url": "https://.../audio.mp4"
    }
  },
  "account_recap": {
    "username": "example_user",
    "activity_totals": { "total_views": 1066188, "total_likes": 17388 },
    "performance_averages": { "avg_engagement_rate_percent": 2.48 }
  }
}

📁 Folder Hierarchy

tiktok_downloads/
  └── example_user/
      ├── account_summary.json            # Cumulative totals, averages, engagement & top posts
      ├── account_activity.json           # Complete chronological history of all posts
      │
      ├── 2026-08-16_7674774636999003406/ # 📸 Photo Slideshow post folder
      │   ├── slide_01.jpg
      │   ├── slide_02.jpg
      │   ├── slide_03.jpg
      │   ├── cover.jpg
      │   ├── post.json                   # Individual post metrics + global account recap
      │   └── account_activity_recap.json
      │
      └── 2026-08-15_7674392602606619917/ # 🎬 Video post folder
          ├── video.mp4                   # HD unwatermarked video
          ├── cover.jpg                   # Video cover thumbnail
          ├── post.json
          └── account_activity_recap.json

❓ FAQ & Troubleshooting

Q: Do I need a TikTok account or cookies to use this?

A: No. All downloads and metadata extractions work out of the box using public endpoints without any login or session cookies.

Q: Are downloaded videos and images watermarked?

A: No. 100% of the downloaded media files are clean, original-quality files without the TikTok bouncing watermark.

Q: Does it re-download existing files if I re-run the command?

A: No. The tool checks file size and presence on disk. If a slide or video has already been downloaded, it will automatically skip it for instant speed.

Q: What dependencies are needed?

A: Node.js >= 18. For profile scanning, yt-dlp is recommended (brew install yt-dlp on macOS or pip install yt-dlp).


💻 Local Development & Contributions

# Clone repository
git clone https://github.com/abdouldotdev/tiktok-downloader-mcp.git
cd tiktok-downloader-mcp

# Install dependencies
npm install

# Compile TypeScript
npm run build

# Run CLI locally
node dist/index.js @username --max 10

# Run MCP Server on stdio
node dist/index.js --stdio

📄 License

MIT © abdouldotdev

Available Tools

5 tools
tiktok_download_postA

Download a TikTok post (unwatermarked HD MP4 video or photo slides) into a date-named folder (YYYY-MM-DD_) with full post.json metadata.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesTikTok post URL
output_dirNoTarget directory (default: ./tiktok_downloads)./tiktok_downloads

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description carries full responsibility for behavioral disclosure. It explicitly states the tool downloads content, creates a date-named folder, and saves metadata as post.json, giving the agent a clear operational model. However, it does not mention any potential rate limits, authentication requirements, or handling of unavailable posts.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, informative sentence that front-loads the action and output specifics. Every element (action, media type, folder naming, metadata) is purposeful, with no superfluous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and a simple 2-parameter tool with 100% schema coverage, the description adequately covers input and output structure. It could be enhanced by noting error behavior (e.g., what happens if the URL is invalid) or requiring authentication, but for a straightforward download tool, it is largely complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description does not add further details about the parameters beyond what the schema already provides (url and output_dir with defaults). It reiterates the output directory usage indirectly but adds no new semantic depth.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action (download), resource (TikTok post), and key features (unwatermarked HD MP4 video or photo slides). It distinguishes itself from siblings by specifying the output format—a date-named folder with metadata—but it does not directly contrast with sibling tools like tiktok_extract_post or tiktok_download_user_media.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies downloading individual posts, which differs from siblings that extract data or download user media, but it does not provide explicit when-to-use guidance or exclusion criteria. The agent must infer usage context from sibling names rather than from the description itself.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tiktok_download_user_mediaA

Download all media (photos slideshows and/or HD MP4 videos) from a TikTok account into organized date folders (YYYY-MM-DD_), with post.json in each folder and full account_summary.json.

ParametersJSON Schema
NameRequiredDescriptionDefault
maxNoMaximum number of posts to check (default: 50)
usernameYesTikTok username (e.g. @username) or profile URL
media_typeNoFilter media type to download: 'all', 'photos', or 'videos' (default: 'all')all
output_dirNoTarget output directory./tiktok_downloads

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so the description carries full burden. It clearly states the output format ('organized date folders (YYYY-MM-DD_<id>)', 'post.json', 'account_summary.json') and that it handles photos and HD MP4 videos. It does not mention rate limits or authentication, but as a download tool the behavior is reasonably transparent for agent decision-making.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one sentence that packs key information: what is downloaded (photos and videos), how it is organized (date folders), metadata files included, and account summary. It is concise and front-loaded, though additional details about the format could be considered but would add length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (4 parameters, no output schema, no annotations), the description is fairly complete. It explains the output structure and file naming, which is critical for an agent to understand what will be created. Missing details on rate limits or required permissions, but for a download tool the core behavior is covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds value by explaining the output structure and overall purpose, but does not add specific parameter-level details beyond what the schema already provides. However, the enum for media_type and defaults for max and output_dir are self-explanatory. Scores 4 because the description context complements the schema well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses specific verbs ('download') and resources ('media from a TikTok account') and clearly distinguishes from siblings like tiktok_extract_post or tiktok_get_user_posts by mentioning 'organized date folders', 'post.json', and 'account_summary.json'. It differentiates itself well.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool (to download all media from a TikTok account) but provides no explicit guidance on when not to use it or alternatives. Given sibling tools like tiktok_get_user_posts or tiktok_download_post exist, it would benefit from stating when to prefer this over fetching or downloading a single post.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tiktok_extract_postA

Extract unwatermarked HD photos, video download URL, audio, and full engagement metrics (views, likes, comments, shares, saves) from any TikTok URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesTikTok post URL (e.g. https://www.tiktok.com/@user/video/123... or https://www.tiktok.com/@user/photo/123... or https://vm.tiktok.com/...)

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It discloses that the tool extracts media (implying it is a read operation) and returns engagement metrics, but it does not mention any potential destructive side effects, authorization requirements, rate limits, or data freshness. The lack of annotations and limited behavioral detail keeps this at a mid-range score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently communicates the tool's purpose and deliverables without any wasted words. Every element earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that the tool has only one parameter with full schema coverage, no output schema, and no nested objects, the description is complete enough for an agent to understand what the tool returns and how to invoke it. The specifics about media type (photos, video, audio) and nine engagement metrics cover the essential context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents the single 'url' parameter thoroughly. The description adds no further syntax or formatting guidance beyond what the schema provides, leading to a baseline score of 3. No additional value is contributed for the parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('extract'), the specific resource ('TikTok URL'), and lists the exact deliverables (unwatermarked HD photos, video download URL, audio, and nine categories of engagement metrics). This specificity and completeness distinguish it effectively from sibling tools like tiktok_download_post or tiktok_get_user_posts, which have different scopes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is used when you need unwatermarked media and full metrics from a single TikTok post URL. However, it does not explicitly state when NOT to use this tool (e.g., if only download is needed, use tiktok_download_post) or suggest alternatives for user-level data. The context is clear but omits exclusionary guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tiktok_get_user_analyticsB

Analyze a TikTok profile's recent engagement metrics, total views, likes, comments, shares, engagement rate, and top performing posts without downloading files.

ParametersJSON Schema
NameRequiredDescriptionDefault
maxNoNumber of recent posts to analyze (default: 30)
usernameYesTikTok username or profile URL

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It states 'without downloading files' implying a read-only operation and lists the metrics returned. However, it omits details on authentication requirements, rate limits, data recency bounds, and whether the analysis is computed on-the-fly or cached. This is adequate but not thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that immediately states the verb and resource. It is 20 words with no filler, and every term ('analyze', 'engagement metrics', 'without downloading') adds value. Ideal conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description should explain the return structure. It mentions 'top performing posts' but does not specify whether those are full post objects, IDs, or thumbnails. It also fails to describe the format of engagement metrics (e.g., per-post breakdown vs. aggregate). A user cannot fully anticipate the tool's output.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage for both parameters (username and max), so the baseline is 3. The description does not add any extra meaning beyond the schema descriptions; it does not clarify how 'max' affects the analysis output or what formats are accepted for username.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the explicit verb 'Analyze' targeting 'a TikTok profile's recent engagement metrics', listing specific outputs like views, likes, comments, shares, engagement rate, and top performing posts. It clearly differentiates from sibling tools, which focus on extraction or downloading, by emphasizing 'without downloading files'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus alternatives like tiktok_get_user_posts or tiktok_extract_post. While it hints at not needing downloads, it does not explain trade-offs (e.g., aggregated vs. raw data) or scenarios where this tool is preferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tiktok_get_user_postsB

List recent post IDs, upload dates, and URLs for a TikTok user or profile URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
maxNoMaximum number of posts to fetch (default: 50)
usernameYesTikTok username (e.g. @username or username) or profile URL

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since no annotations are provided, the description carries the full burden. It discloses that the tool returns post IDs, upload dates, and URLs, which is useful. However, it does not mention any behavioral traits like rate limits, authentication needs, or pagination behavior beyond 'max' parameter. The description is adequate but not thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that efficiently captures purpose and output. It is front-loaded with key information. No unnecessary words, but could be slightly more structured with examples or usage hints.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's relative simplicity (2 params, no output schema, no nested objects) and sibling context, the description is sufficient for basic understanding. However, it lacks guidance on when to use this vs tiktok_get_user_analytics or tiktok_download_user_media, and does not explain what happens if the max is exceeded or if the user has no posts. A more complete description would include a note about the scope of 'recent' and any limitations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds no additional meaning beyond the schema; the 'max' parameter is already described with default and purpose, and 'username' is well-documented. The description reiterates that username accepts @ or plain or URL, which is helpful but not a significant addition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it lists recent post IDs, upload dates, and URLs for a TikTok user or profile URL. The verb 'list' and resource 'TikTok user posts' are specific, but it does not distinguish from siblings like tiktok_extract_post or tiktok_download_post, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for fetching recent posts from a user, and mentions that the input can be a username or profile URL. However, it lacks guidance on when to use this tool versus alternatives (e.g., tiktok_download_user_media for downloading, tiktok_get_user_analytics for analytics). No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv1.0.0
    • First observedtiktok_download_post
    • First observedtiktok_download_user_media
    • First observedtiktok_extract_post
    • First observedtiktok_get_user_analytics
    • First observedtiktok_get_user_posts

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: extracting post info, listing user posts, downloading a single post, downloading all user media, and getting user analytics. No significant overlap between any two tools.

Naming Consistency4/5

All tools follow the pattern 'tiktok_<verb>_<object>', with verbs like extract, get, download. The pattern is consistent, though 'extract' vs 'get' for similar retrieval operations is a minor inconsistency.

Tool Count5/5

Five tools is well-scoped for a TikTok downloader: essential operations for data extraction, listing, downloading, and analytics are covered without bloat.

Completeness4/5

The surface covers the core workflow: obtain URLs, list posts, download individual or all user media, and analyze engagement. Missing features like search or hashtag downloads are beyond the stated scope, so minor gap.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    Not graded
    maintenance
    A comprehensive MCP server that enables AI assistants to search, download, and analyze TikTok content while also performing active tasks like publishing videos and interacting with posts. It provides full automation capabilities for TikTok through browser session management and anti-detection features.
    12
    2
    -
  • F
    license
    B
    quality
    D
    maintenance
    MCP server for TikTok that enables searching videos, users, hashtags, and fetching trending content, user profiles, and video details via official API or public scraping.
    8
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/abdouldotdev/tiktok-downloader-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server