Install
openclaw skills install tiktok-publisherPublish videos and photo carousels to TikTok. Use when the user says 'post to TikTok', 'upload TikTok video', 'create TikTok post', 'publish TikTok carousel', or wants to upload videos or photo slideshows to TikTok with privacy settings and draft mode.
openclaw skills install tiktok-publisherPublish videos and photo carousels to TikTok. Powered by Boring.
https://boring.aiagent-me.com/mcp/t/xxxxx...) contains an embedded authentication token. Treat it like a password — do not share it publicly.Call boring_list_accounts and filter for tiktok platform.
TikTok supports:
| Type | Media | Specs |
|---|---|---|
| Video | 1 video | MP4 recommended, max 4GB, max 10 minutes |
| Photo Carousel | 2-35 images | PNG auto-converts to JPEG |
Upload files to get public URLs:
boring_upload_file with file_pathboring_upload_from_urlCall boring_publish_post:
Video post:
boring_publish_post(
account_id="<tiktok_account_id>",
platform="tiktok",
text="Caption for the video #fyp #trending",
media_urls=["https://...video.mp4"]
)
Photo carousel:
boring_publish_post(
account_id="<tiktok_account_id>",
platform="tiktok",
text="Swipe through these photos!",
media_urls=["https://...1.jpg", "https://...2.jpg", "https://...3.jpg"]
)
Use draft: true to send the video to the creator's TikTok inbox instead of publishing directly. The creator must manually publish it in the TikTok app.
boring_publish_post(
account_id="<tiktok_account_id>",
platform="tiktok",
text="Review this before posting",
media_urls=["https://...video.mp4"],
draft=true
)
This is useful when:
Show:
PUBLIC_TO_EVERYONE. Other options: MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLYvideo.upload, video.publish| Error | Solution |
|---|---|
MediaRequired | TikTok requires video or photos |
MediaTooLarge | Video max 4GB |
VideoProcessingFailed | Check video format — MP4 recommended |
TokenExpired | Reconnect at boring.aiagent-me.com |
PublishingFailed | Check TikTok account status and permissions |
Full API docs: boring-doc.aiagent-me.com