Skip to main content
Glama
leanhduy-iuh

tiktok-uploader-mcp

by leanhduy-iuh

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
tiktok_create_bundleA

Bundle a folder of images + caption for TikTok mobile upload.

Photo carousel can only be uploaded from TikTok mobile app (not web). This tool prepares a folder + ZIP with:

  • images/ (sorted 01.png, 02.png, ...)

  • caption.txt (ready to paste into TikTok)

  • manifest.json (metadata)

  • README.txt (human upload instructions)

User then copies the ZIP/folder to their phone and uploads manually.

Args: images_dir: Absolute path to folder with 2-35 PNG/JPG images. caption: Caption text (1-2200 chars). Hashtags can be inline or via arg. hashtags: Optional list of hashtags without '#'. Max 30. series_slug: Series identifier for bundle naming (lowercase, no spaces). part_slug: Part identifier (optional). bundles_dir: Override default bundles output directory. make_zip: Also create .zip alongside the folder.

Returns: JSON with {"ok": true, "bundle_id": "...", "zip_path": "...", ...}.

tiktok_list_bundlesA

List all prepared bundles with summary metadata.

Args: bundles_dir: Override default bundles directory.

Returns: JSON array of bundle summaries (id, image_count, created_at, has_zip, ...).

tiktok_get_bundleA

Get full manifest for a bundle.

Args: bundle_id: Bundle identifier (from list_bundles). bundles_dir: Override default bundles directory.

Returns: JSON manifest with image hashes, caption, timestamps, etc.

tiktok_delete_bundleA

Delete a bundle folder + its ZIP file.

Args: bundle_id: Bundle identifier. bundles_dir: Override default bundles directory.

Returns: JSON with list of removed paths.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.3/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: create, delete, get, and list bundles. No overlap exists, and the descriptions make it easy to differentiate.

Naming Consistency5/5

All tools follow the consistent pattern tiktok_verb_noun (e.g., tiktok_create_bundle, tiktok_list_bundles). Naming is predictable and uniform.

Tool Count5/5

Four tools is well-scoped for the domain of bundle management. Each tool serves a necessary CRUD-like function without being excessive or too sparse.

Completeness5/5

The tool set covers all essential operations for bundle lifecycle: create, read (get/list), and delete. No obvious gaps given the manual upload workflow.

Maintenance

ActivityInactive
ResponsivenessNo issues