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_CONNECTIONS with toolkit tiktok
- Always call
RUBE_SEARCH_TOOLS first 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_TOOLS responds
- Call
RUBE_MANAGE_CONNECTIONS with toolkit tiktok
- 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_VIDEO or TIKTOK_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 with s3key, mimetype, name
title: Video title/caption
Key parameters for publish:
publish_id: ID returned from upload step
title: Video caption text
privacy_level: 'PUBLIC_TO_EVERYONE', 'MUTUAL_FOLLOW_FRIENDS', 'FOLLOWER_OF_CREATOR', 'SELF_ONLY'
disable_duet: Disable duet feature
disable_stitch: Disable stitch feature
disable_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 with s3key, mimetype, name
title: Photo caption text
privacy_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 page
cursor: 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_more and cursor in 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_PROFILE returns more details than GET_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
cursor from previous response for next page
- Check
has_more boolean to determine if more results exist
max_count controls 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
data or data.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 enprojectnment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: tiktok-automation3description: 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.4---56# TikTok Automation via Rube MCP78Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP.910## Prerequisites1112- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)13- Active TikTok connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `tiktok`14- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas1516## Setup1718**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.1920211. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds222. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `tiktok`233. If connection is not ACTIVE, follow the returned auth link to complete TikTok OAuth244. Confirm connection status shows ACTIVE before running any workflows2526## Core Workflows2728### 1. Upload and Publish a Video2930**When to use**: User wants to upload a video and publish it to TikTok3132**Tool sequence**:331. `TIKTOK_UPLOAD_VIDEO` or `TIKTOK_UPLOAD_VIDEOS` - Upload video file(s) [Required]342. `TIKTOK_FETCH_PUBLISH_STATUS` - Check upload/processing status [Required]353. `TIKTOK_PUBLISH_VIDEO` - Publish the uploaded video [Required]3637**Key parameters for upload**:38- `video`: Video file object with `s3key`, `mimetype`, `name`39- `title`: Video title/caption4041**Key parameters for publish**:42- `publish_id`: ID returned from upload step43- `title`: Video caption text44- `privacy_level`: 'PUBLIC_TO_EVERYONE', 'MUTUAL_FOLLOW_FRIENDS', 'FOLLOWER_OF_CREATOR', 'SELF_ONLY'45- `disable_duet`: Disable duet feature46- `disable_stitch`: Disable stitch feature47- `disable_comment`: Disable comments4849**Pitfalls**:50- Video upload and publish are TWO separate steps; upload first, then publish51- After upload, poll FETCH_PUBLISH_STATUS until processing is complete before publishing52- Video must meet TikTok requirements: MP4/WebM format, max 10 minutes, max 4GB53- Caption/title has character limits; check current TikTok guidelines54- Privacy level strings are case-sensitive and must match exactly55- Processing may take 30-120 seconds depending on video size5657### 2. Post a Photo5859**When to use**: User wants to post a photo to TikTok6061**Tool sequence**:621. `TIKTOK_POST_PHOTO` - Upload and post a photo [Required]632. `TIKTOK_FETCH_PUBLISH_STATUS` - Check processing status [Optional]6465**Key parameters**:66- `photo`: Photo file object with `s3key`, `mimetype`, `name`67- `title`: Photo caption text68- `privacy_level`: Privacy setting for the post6970**Pitfalls**:71- Photo posts are a newer TikTok feature; availability may vary by account type72- Supported formats: JPEG, PNG, WebP73- Image size and dimension limits apply; check current TikTok guidelines7475### 3. List and Manage Videos7677**When to use**: User wants to view their published videos7879**Tool sequence**:801. `TIKTOK_LIST_VIDEOS` - List user's published videos [Required]8182**Key parameters**:83- `max_count`: Number of videos to return per page84- `cursor`: Pagination cursor for next page8586**Pitfalls**:87- Only returns the authenticated user's own videos88- Response includes video metadata: id, title, create_time, share_url, duration, etc.89- Pagination uses cursor-based approach; check for `has_more` and `cursor` in response90- Recently published videos may not appear immediately in the list9192### 4. View User Profile and Stats9394**When to use**: User wants to check their TikTok profile info or account statistics9596**Tool sequence**:971. `TIKTOK_GET_USER_PROFILE` - Get full profile information [Required]982. `TIKTOK_GET_USER_STATS` - Get account statistics [Optional]993. `TIKTOK_GET_USER_BASIC_INFO` - Get basic user info [Alternative]100101**Key parameters**: (no required parameters; returns data for authenticated user)102103**Pitfalls**:104- Profile data is for the authenticated user only; cannot view other users' profiles105- Stats include follower count, following count, video count, likes received106- `GET_USER_PROFILE` returns more details than `GET_USER_BASIC_INFO`107- Stats may have slight delays; not real-time108109### 5. Check Publish Status110111**When to use**: User wants to check the status of a content upload or publish operation112113**Tool sequence**:1141. `TIKTOK_FETCH_PUBLISH_STATUS` - Poll for status updates [Required]115116**Key parameters**:117- `publish_id`: The publish ID from a previous upload/publish operation118119**Pitfalls**:120- Status values include processing, success, and failure states121- Poll at reasonable intervals (5-10 seconds) to avoid rate limits122- Failed publishes include error details in the response123- Content moderation may cause delays or rejections after processing124125## Common Patterns126127### Video Publish Flow128129```1301. Upload video via TIKTOK_UPLOAD_VIDEO -> get publish_id1312. Poll TIKTOK_FETCH_PUBLISH_STATUS with publish_id until complete1323. If status is ready, call TIKTOK_PUBLISH_VIDEO with final settings1334. Optionally poll status again to confirm publication134```135136### Pagination137138- Use `cursor` from previous response for next page139- Check `has_more` boolean to determine if more results exist140- `max_count` controls page size141142## Known Pitfalls143144**Content Requirements**:145- Videos: MP4/WebM, max 4GB, max 10 minutes146- Photos: JPEG/PNG/WebP147- Captions: Character limits vary by region148- Content must comply with TikTok community guidelines149150**Authentication**:151- OAuth tokens have scopes; ensure video.upload and video.publish are authorized152- Tokens expire; re-authenticate if operations fail with 401153154**Rate Limits**:155- TikTok API has strict rate limits per application156- Implement exponential backoff on 429 responses157- Upload operations have daily limits158159**Response Parsing**:160- Response data may be nested under `data` or `data.data`161- Parse defensively with fallback patterns162- Publish IDs are strings; use exactly as returned163164## Quick Reference165166| Task | Tool Slug | Key Params |167|------|-----------|------------|168| Upload video | TIKTOK_UPLOAD_VIDEO | video, title |169| Upload multiple videos | TIKTOK_UPLOAD_VIDEOS | videos |170| Publish video | TIKTOK_PUBLISH_VIDEO | publish_id, title, privacy_level |171| Post photo | TIKTOK_POST_PHOTO | photo, title, privacy_level |172| List videos | TIKTOK_LIST_VIDEOS | max_count, cursor |173| Get profile | TIKTOK_GET_USER_PROFILE | (none) |174| Get user stats | TIKTOK_GET_USER_STATS | (none) |175| Get basic info | TIKTOK_GET_USER_BASIC_INFO | (none) |176| Check publish status | TIKTOK_FETCH_PUBLISH_STATUS | publish_id |177178## When to Use179This skill is applicable to execute the workflow or actions described in the overview.180181## Limitations182- Use this skill only when the task clearly matches the scope described above.183- Do not treat the output as a substitute for enprojectnment-specific validation, testing, or expert review.184- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.