tiktok-uploader-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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:
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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: create, delete, get, and list bundles. No overlap exists, and the descriptions make it easy to differentiate.
All tools follow the consistent pattern tiktok_verb_noun (e.g., tiktok_create_bundle, tiktok_list_bundles). Naming is predictable and uniform.
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.
The tool set covers all essential operations for bundle lifecycle: create, read (get/list), and delete. No obvious gaps given the manual upload workflow.