Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
sickn33 avatar

Tiktok Automation

  • 644 installs
  • 44k repo stars
  • Updated July 27, 2026
  • sickn33/antigravity-awesome-skills

tiktok-automation is a Claude Code skill that automates TikTok uploads, publishing, and profile operations through Composio's TikTok toolkit via Rube MCP for developers running agent-driven content workflows.

About

tiktok-automation is a community skill marked critical risk that automates TikTok through Rube MCP and Composio's TikTok toolkit. Developers connect Rube at https://rube.app/mcp, activate the tiktok toolkit with RUBE_MANAGE_CONNECTIONS, and always call RUBE_SEARCH_TOOLS first for current schemas. Supported flows include video upload and publish, photo posts, content management, and reading user profiles and stats. Reach for tiktok-automation when agents must post or manage TikTok without manual dashboard work, after confirming MCP connectivity and account permissions.

  • Automates full TikTok video upload → publish workflow using TIKTOK_UPLOAD_VIDEO, TIKTOK_FETCH_PUBLISH_STATUS, and TIKTOK
  • Supports posting photos, managing content, and retrieving user profiles and statistics
  • Always begins with RUBE_SEARCH_TOOLS to fetch current schemas before any operation
  • Handles OAuth connection management through RUBE_MANAGE_CONNECTIONS with the tiktok toolkit
  • Runs entirely through Rube MCP server connected to Composio's TikTok toolkit

Tiktok Automation by the numbers

  • 644 all-time installs (skills.sh)
  • +31 installs in the week ending Jul 6, 2026 (Skillselion tracking)
  • Ranked #373 of 2,742 Automation & Workflows skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill tiktok-automation

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs644
repo stars44k
Security audit1 / 3 scanners passed
Last updatedJuly 27, 2026
Repositorysickn33/antigravity-awesome-skills

How do you automate TikTok uploads with an AI agent?

Automate uploading, publishing, and managing TikTok videos and profile data without manual posting.

Who is it for?

Developers already using Rube MCP who need agent-driven TikTok publishing and profile reads with schema discovery via RUBE_SEARCH_TOOLS.

Skip if: Teams without Rube MCP, accounts lacking TikTok API permissions, or workflows where manual creative review is mandatory before every post.

When should I use this skill?

User asks to upload, publish, or manage TikTok content or view TikTok profile stats through an agent or MCP.

What you get

Published TikTok videos or photos, managed content actions, and retrieved profile or stats responses from Composio tools.

  • Published TikTok media
  • Content management API responses
  • Profile and stats payloads

Files

SKILL.mdMarkdownGitHub ↗

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.

1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds 2. Call RUBE_MANAGE_CONNECTIONS with toolkit tiktok 3. If connection is not ACTIVE, follow the returned auth link to complete TikTok OAuth 4. 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: 1. TIKTOK_UPLOAD_VIDEO or TIKTOK_UPLOAD_VIDEOS - Upload video file(s) [Required] 2. TIKTOK_FETCH_PUBLISH_STATUS - Check upload/processing status [Required] 3. 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: 1. TIKTOK_POST_PHOTO - Upload and post a photo [Required] 2. 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: 1. 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: 1. TIKTOK_GET_USER_PROFILE - Get full profile information [Required] 2. TIKTOK_GET_USER_STATS - Get account statistics [Optional] 3. 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: 1. 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

TaskTool SlugKey Params
Upload videoTIKTOK_UPLOAD_VIDEOvideo, title
Upload multiple videosTIKTOK_UPLOAD_VIDEOSvideos
Publish videoTIKTOK_PUBLISH_VIDEOpublish_id, title, privacy_level
Post photoTIKTOK_POST_PHOTOphoto, title, privacy_level
List videosTIKTOK_LIST_VIDEOSmax_count, cursor
Get profileTIKTOK_GET_USER_PROFILE(none)
Get user statsTIKTOK_GET_USER_STATS(none)
Get basic infoTIKTOK_GET_USER_BASIC_INFO(none)
Check publish statusTIKTOK_FETCH_PUBLISH_STATUSpublish_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.

Related skills

How it compares

Use tiktok-automation for MCP-agent TikTok posting; prefer official TikTok Content Posting API docs when building a custom backend without Composio.

FAQ

What setup does tiktok-automation require?

tiktok-automation needs Rube MCP connected, RUBE_SEARCH_TOOLS called for current schemas, and an active TikTok link via RUBE_MANAGE_CONNECTIONS with the composio tiktok toolkit before upload or publish actions.

Which TikTok actions can tiktok-automation perform?

tiktok-automation covers Composio TikTok toolkit flows: upload and publish videos, post photos, manage content, and fetch user profiles and stats—always after searching tools for the latest parameter schema.

Is Tiktok Automation safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Automation & Workflowscontentdistribution

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.