tiktok-automation
Automates TikTok video publishing and content management tasks through the Composio platform.
Install
mkdir -p .claude/skills/tiktok-automation-tjsndhu && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13743" && unzip -o skill.zip -d .claude/skills/tiktok-automation-tjsndhu && rm skill.zipInstalls to .claude/skills/tiktok-automation-tjsndhu
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Automate TikTok tasks via Rube MCP (Composio): upload/publish videos, post photos, manage content, and view user profiles/stats. Always search tools first for current schemas.Key capabilities
- →Upload and publish videos to TikTok
- →Post photos to TikTok
- →List and manage published TikTok videos
- →View user profile and account statistics
- →Check the status of content upload or publish operations
- →Handle TikTok content creation and profile operations
How it works
The skill automates TikTok tasks by interacting with Composio's TikTok toolkit via Rube MCP. It uses specific tool sequences for uploading, publishing, managing content, and retrieving user data.
Inputs & outputs
When to use tiktok-automation
- →Upload TikTok videos
- →Publish scheduled content
- →Check video status
- →Analyze profile performance
About this skill
TikTok Automation via Rube MCP
Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP.
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active TikTok connection via
RUBE_MANAGE_CONNECTIONSwith toolkittiktok - Always call
RUBE_SEARCH_TOOLSfirst to get current tool schemas
Setup
Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
RUBE_SEARCH_TOOLSresponds - Call
RUBE_MANAGE_CONNECTIONSwith toolkittiktok - If connection is not ACTIVE, follow the returned auth link to complete TikTok OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Upload and Publish a Video
When to use: User wants to upload a video and publish it to TikTok
Tool sequence:
TIKTOK_UPLOAD_VIDEOorTIKTOK_UPLOAD_VIDEOS- Upload video file(s) [Required]TIKTOK_FETCH_PUBLISH_STATUS- Check upload/processing status [Required]TIKTOK_PUBLISH_VIDEO- Publish the uploaded video [Required]
Key parameters for upload:
video: Video file object withs3key,mimetype,nametitle: Video title/caption
Key parameters for publish:
publish_id: ID returned from upload steptitle: Video caption textprivacy_level: 'PUBLIC_TO_EVERYONE', 'MUTUAL_FOLLOW_FRIENDS', 'FOLLOWER_OF_CREATOR', 'SELF_ONLY'disable_duet: Disable duet featuredisable_stitch: Disable stitch featuredisable_comment: Disable comments
Pitfalls:
- Video upload and publish are TWO separate steps; upload first, then publish
- After upload, poll FETCH_PUBLISH_STATUS until processing is complete before publishing
- Video must meet TikTok requirements: MP4/WebM format, max 10 minutes, max 4GB
- Caption/title has character limits; check current TikTok guidelines
- Privacy level strings are case-sensitive and must match exactly
- Processing may take 30-120 seconds depending on video size
2. Post a Photo
When to use: User wants to post a photo to TikTok
Tool sequence:
TIKTOK_POST_PHOTO- Upload and post a photo [Required]TIKTOK_FETCH_PUBLISH_STATUS- Check processing status [Optional]
Key parameters:
photo: Photo file object withs3key,mimetype,nametitle: Photo caption textprivacy_level: Privacy setting for the post
Pitfalls:
- Photo posts are a newer TikTok feature; availability may vary by account type
- Supported formats: JPEG, PNG, WebP
- Image size and dimension limits apply; check current TikTok guidelines
3. List and Manage Videos
When to use: User wants to view their published videos
Tool sequence:
TIKTOK_LIST_VIDEOS- List user's published videos [Required]
Key parameters:
max_count: Number of videos to return per pagecursor: Pagination cursor for next page
Pitfalls:
- Only returns the authenticated user's own videos
- Response includes video metadata: id, title, create_time, share_url, duration, etc.
- Pagination uses cursor-based approach; check for
has_moreandcursorin response - Recently published videos may not appear immediately in the list
4. View User Profile and Stats
When to use: User wants to check their TikTok profile info or account statistics
Tool sequence:
TIKTOK_GET_USER_PROFILE- Get full profile information [Required]TIKTOK_GET_USER_STATS- Get account statistics [Optional]TIKTOK_GET_USER_BASIC_INFO- Get basic user info [Alternative]
Key parameters: (no required parameters; returns data for authenticated user)
Pitfalls:
- Profile data is for the authenticated user only; cannot view other users' profiles
- Stats include follower count, following count, video count, likes received
GET_USER_PROFILEreturns more details thanGET_USER_BASIC_INFO- Stats may have slight delays; not real-time
5. Check Publish Status
When to use: User wants to check the status of a content upload or publish operation
Tool sequence:
TIKTOK_FETCH_PUBLISH_STATUS- Poll for status updates [Required]
Key parameters:
publish_id: The publish ID from a previous upload/publish operation
Pitfalls:
- Status values include processing, success, and failure states
- Poll at reasonable intervals (5-10 seconds) to avoid rate limits
- Failed publishes include error details in the response
- Content moderation may cause delays or rejections after processing
Common Patterns
Video Publish Flow
1. Upload video via TIKTOK_UPLOAD_VIDEO -> get publish_id
2. Poll TIKTOK_FETCH_PUBLISH_STATUS with publish_id until complete
3. If status is ready, call TIKTOK_PUBLISH_VIDEO with final settings
4. Optionally poll status again to confirm publication
Pagination
- Use
cursorfrom previous response for next page - Check
has_moreboolean to determine if more results exist max_countcontrols page size
Known Pitfalls
Content Requirements:
- Videos: MP4/WebM, max 4GB, max 10 minutes
- Photos: JPEG/PNG/WebP
- Captions: Character limits vary by region
- Content must comply with TikTok community guidelines
Authentication:
- OAuth tokens have scopes; ensure video.upload and video.publish are authorized
- Tokens expire; re-authenticate if operations fail with 401
Rate Limits:
- TikTok API has strict rate limits per application
- Implement exponential backoff on 429 responses
- Upload operations have daily limits
Response Parsing:
- Response data may be nested under
dataordata.data - Parse defensively with fallback patterns
- Publish IDs are strings; use exactly as returned
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| Upload video | TIKTOK_UPLOAD_VIDEO | video, title |
| Upload multiple videos | TIKTOK_UPLOAD_VIDEOS | videos |
| Publish video | TIKTOK_PUBLISH_VIDEO | publish_id, title, privacy_level |
| Post photo | TIKTOK_POST_PHOTO | photo, title, privacy_level |
| List videos | TIKTOK_LIST_VIDEOS | max_count, cursor |
| Get profile | TIKTOK_GET_USER_PROFILE | (none) |
| Get user stats | TIKTOK_GET_USER_STATS | (none) |
| Get basic info | TIKTOK_GET_USER_BASIC_INFO | (none) |
| Check publish status | TIKTOK_FETCH_PUBLISH_STATUS | publish_id |
When to Use
This skill is applicable to execute the workflow or actions described in the overview.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
When not to use it
- →When Rube MCP is not connected or available
- →When the TikTok connection is not active
- →When the task does not involve TikTok automation
Prerequisites
Limitations
- →Video upload and publish are two separate steps.
- →Content must comply with TikTok community guidelines and technical requirements (e.g., video format, size).
- →OAuth tokens have scopes and expire, requiring re-authentication.
How it compares
This skill provides a programmatic way to automate TikTok content and profile management, unlike manual interaction with the TikTok app.
Compared to similar skills
tiktok-automation side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| tiktok-automation (this skill) | 0 | 3mo | No flags | Intermediate |
| social-orchestrator-v2 | 0 | 2mo | No flags | Advanced |
| social-media-manager | 0 | 5mo | No flags | Intermediate |
| tiktok-marketing | 0 | 3mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by TJSNDHU
View all by TJSNDHU →You might also like
social-orchestrator-v2
diegosouzapw
SOCIAL-ORCHESTRATOR: Canais Unificados workflow skill. Use this skill when the user needs Orquestrador unificado de canais sociais \u2014 coordena Instagram, Telegram e WhatsApp em um unico fluxo de trabalho. Publicacao cross-channel, metricas unificadas, reutilizacao de conteudo por formato, agenda
social-media-manager
remote-123
When the user wants to develop social media strategy, plan content calendars, manage community engagement, or grow their social presence across platforms. Also use when the user mentions 'social media strategy,' 'social calendar,' 'community management,' 'social media plan,' 'grow followers,' 'engag
tiktok-marketing
aAAaqwq
TikTok content strategy, video creation workflows, posting optimization, and analytics. Based on n8n automation templates.
social-content
agentik-os
>
FISCFED9
Integracao completa com Instagram via Graph API. Publicacao, analytics, comentarios, DMs, hashtags, agendamento, templates e gestao de contas Business/Creator.
zendesk
vm0-ai
Zendesk Support REST API for managing tickets, users, organizations, and support operations. Use this skill to create tickets, manage users, search, and automate customer support workflows.