doodle top mobile

Automate TikTok with Claude Cowork

Schedule TikTok videos, control privacy settings, manage duets and stitches, and handle branded content disclosures — all from the command line or through your AI agent.

Setup Guide

Please make sure there is always a human in the loop.

doodle left mobiledoodle right mobile

Post to TikTok in Seconds

Terminal

# Install the skill
npx skills add gitroomhq/postiz-agent

# Set your API key
export POSTIZ_API_KEY=your_api_key

# Find your TikTok integration
postiz integrations:list

# Upload a video
VIDEO=$(postiz upload video.mp4)
VIDEO_URL=$(echo "$VIDEO" | jq -r '.path')

# Schedule a TikTok post
postiz posts:create \
  -c "Check this out! #fyp #viral" \
  -m "$VIDEO_URL" \
  -s "2025-01-15T10:00:00Z" \
  --settings '{"privacy_level":"PUBLIC_TO_EVERYONE","duet":true,"stitch":true,"comment":true,"autoAddMusic":"no","brand_content_toggle":false,"brand_organic_toggle":false,"content_posting_method":"DIRECT_POST"}' \
  -i "your-tiktok-integration-id"

TikTok-Specific Features

🔒

Privacy Controls

Set video visibility to public, friends only, followers only, or private. Control exactly who sees each post.

🎬

Duets & Stitches

Enable or disable duets and stitches per video. Let your audience remix your content or keep it locked down.

🎵

Auto Music

Automatically add background music to your videos with the autoAddMusic setting. Perfect for quick clips.

📢

Branded Content

Toggle branded content and organic branded content disclosures to stay compliant with TikTok's policies.

🤖

AI Disclosure

Mark videos as AI-generated to comply with TikTok's transparency requirements for AI-created content.

📅

Scheduled Posting

Schedule videos with precise timestamps. Use DIRECT_POST for immediate publishing or UPLOAD for draft mode.

How It Works

1

Find Your TikTok Integration

List your connected accounts and grab your TikTok integration ID. You can also fetch available settings to see what options are supported.

Discovery

# List all integrations
postiz integrations:list

# Filter for TikTok
postiz integrations:list | jq \
  '.[] | select(.identifier=="tiktok")'

# Get TikTok settings schema
postiz integrations:settings <tiktok-id>
2

Upload Your Video

Upload your video file to get a public URL. TikTok requires media to be accessible via HTTPS. Supports MP4, MOV, AVI, MKV, WEBM, and more.

Upload

# Upload video and extract URL
RESULT=$(postiz upload video.mp4)
VIDEO_URL=$(echo "$RESULT" | jq -r '.path')

echo $VIDEO_URL
# https://uploads.postiz.com/your-video.mp4
3

Create Your Post

Schedule a TikTok post with your video, caption, hashtags, and platform-specific settings like privacy level, duet/stitch permissions, and content disclosures.

Post Creation

postiz posts:create \
  -c "New tutorial drop! #coding #dev" \
  -m "$VIDEO_URL" \
  -s "2025-03-01T09:00:00Z" \
  --settings '{
    "privacy_level": "PUBLIC_TO_EVERYONE",
    "title": "Coding Tutorial",
    "duet": true,
    "stitch": true,
    "comment": true,
    "autoAddMusic": "no",
    "brand_content_toggle": false,
    "brand_organic_toggle": false,
    "content_posting_method": "DIRECT_POST"
  }' \
  -i "tiktok-id"

TikTok Settings Reference

Every TikTok post accepts these platform-specific settings via the --settings flag.

FieldTypeDescription
privacy_levelstringWho can view: PUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY
titlestringVideo title (max 90 characters)
duetbooleanAllow duets on this video
stitchbooleanAllow stitches on this video
commentbooleanAllow comments on this video
autoAddMusicstringAuto-add music: yes or no
brand_content_togglebooleanBranded content disclosure
brand_organic_togglebooleanOrganic branded content
video_made_with_aibooleanAI-generated content disclosure
content_posting_methodstringDIRECT_POST or UPLOAD (draft)

Common Configurations

Copy-paste these settings for common TikTok posting scenarios.

Public Video with Full Interactions

settings.json

{
  "privacy_level": "PUBLIC_TO_EVERYONE",
  "title": "My Awesome Video",
  "duet": true,
  "stitch": true,
  "comment": true,
  "autoAddMusic": "no",
  "brand_content_toggle": false,
  "brand_organic_toggle": false,
  "video_made_with_ai": false,
  "content_posting_method": "DIRECT_POST"
}

Branded Content Post

settings.json

{
  "privacy_level": "PUBLIC_TO_EVERYONE",
  "title": "Partnership with Brand",
  "duet": false,
  "stitch": false,
  "comment": true,
  "autoAddMusic": "no",
  "brand_content_toggle": true,
  "brand_organic_toggle": true,
  "video_made_with_ai": false,
  "content_posting_method": "DIRECT_POST"
}

AI-Generated Content

settings.json

{
  "privacy_level": "PUBLIC_TO_EVERYONE",
  "title": "AI Generated Art",
  "duet": true,
  "stitch": true,
  "comment": true,
  "autoAddMusic": "yes",
  "brand_content_toggle": false,
  "brand_organic_toggle": false,
  "video_made_with_ai": true,
  "content_posting_method": "DIRECT_POST"
}

Private Draft (Upload Only)

settings.json

{
  "privacy_level": "SELF_ONLY",
  "duet": false,
  "stitch": false,
  "comment": false,
  "autoAddMusic": "no",
  "brand_content_toggle": false,
  "brand_organic_toggle": false,
  "content_posting_method": "UPLOAD"
}

What is Claude Cowork?

Claude Cowork is Anthropic's agentic AI tool for knowledge workers. It runs on your desktop, connects to local files and apps like Google Drive, Gmail, and DocuSign, and completes multi-step tasks autonomously.

💻

Desktop Native

Claude Cowork runs directly on your desktop, connecting to your local files and apps. No browser or cloud setup needed to manage your social media workflow.

🔗

App Integrations

Connects to Google Drive, Gmail, DocuSign, and more. Pull content from your existing tools and publish it to social media seamlessly.

🤖

Autonomous Tasks

Claude Cowork completes multi-step tasks on its own. Tell it to draft, schedule, and publish posts — it handles the entire workflow.

How Postiz Works with Claude Cowork

Claude Cowork discovers Postiz through MCP (Model Context Protocol) tool integration. Once configured, it can call Postiz commands directly from your desktop — no terminal needed.

  • Install Postiz Agent and set your POSTIZ_API_KEY
  • Claude Cowork discovers Postiz through MCP integration
  • All Postiz commands become available as tools
  • Claude Cowork autonomously chains commands for complex workflows
  • Works seamlessly with your existing desktop apps and files

Install Postiz

# Install the Postiz skill
npx skills add gitroomhq/postiz-agent

# Set your API key
export POSTIZ_API_KEY=your_api_key

# Claude Cowork discovers Postiz
# through MCP tool integration
# and can call all commands directly

TikTok Posting with Claude Cowork

Tell Claude Cowork what to post from your desktop — it connects to Postiz, discovers your integrations, and handles the entire publishing workflow without you touching the terminal.

🦀

From Any Chat App

Tell Claude Cowork what to post from you...

Send a message to Claude Cowork from your favorite chat app. It runs as a persistent daemon on your machine, so it picks up your message, discovers your TikTok account via Postiz, uploads the video, and schedules the post — all while you go about your day.

Claude Cowork

You: Post to TikTok about our new
  feature launch, schedule for tomorrow
  at 9am

Claude Cowork: I'll handle that for you.
  1. Found your TikTok integration
  2. Composing your post
  3. Scheduling for tomorrow at 9:00 AM

  Done! Your post is scheduled.
  Post ID: abc-123
🦀

Scheduled & Proactive

Claude Cowork can be asked to perfo...

Claude Cowork supports cron-based heartbeat tasks. Set up a recurring job that checks a folder for new videos and posts them to TikTok automatically — no manual trigger needed.

Claude Cowork Task

Tell Claude Cowork:

"Every weekday morning, check my
~/content/drafts folder for new posts
and schedule them to TikTok
for noon today. Move published drafts
to ~/content/published."

Claude Cowork will autonomously:
  1. Monitor your drafts folder
  2. Read and format each post
  3. Schedule via Postiz
  4. Move files when done

Why Claude Cowork + Postiz for TikTok

Claude Cowork makes Postiz a natural fit for your TikTok workflow. The agent discovers all available commands and autonomously chains them together.

  • Desktop-native — no terminal or CLI knowledge needed
  • Connects to your local files to pull content for TikTok posts
  • Multi-step autonomy — handles discovery, composition, and scheduling
  • Works with Google Drive, Gmail, and other desktop apps
  • Cross-post to TikTok + other platforms in a single request
  • Powered by Claude — Anthropic&apos;s most capable AI model

SKILL.md (auto-discovered)

---
name: postiz
description: Social media automation
  CLI for scheduling posts across
  30+ platforms including TikTok
metadata:
  claude-cowork:
    requirements:
      env:
        - POSTIZ_API_KEY
      binaries:
        - postiz
---

# Available Commands
- postiz integrations:list
- postiz integrations:settings <id>
- postiz posts:create
- postiz upload <file>
- postiz analytics:platform <id>

# TikTok Settings
privacy_level, duet, stitch,
comment, autoAddMusic,
brand_content_toggle,
content_posting_method

Also Works with OpenClaw

Postiz Agent works as a CLI tool with any AI agent that can execute shell commands — including OpenClaw, the open-source personal AI agent.

🦀

OpenClaw

Open-source AI agent

Claude reads the SKILL.md file to learn all available Postiz commands, then autonomously discovers your TikTok integration, uploads your video, applies privacy and interaction settings, and schedules the post.

OpenClaw

> Post my demo video to TikTok as public
  with duets enabled, schedule for tomorrow

Claude will automatically run:
  postiz integrations:list
  postiz upload ./demo.mp4
  postiz posts:create \
    -c "Check out this demo!" \
    -m "uploaded-url" \
    -s "2025-03-02T09:00:00Z" \
    --settings '{"privacy_level":
      "PUBLIC_TO_EVERYONE",
      "duet":true,"stitch":true,
      "comment":true,...}' \
    -i "tiktok-id"

TikTok + Other Platforms

Schedule the same video to TikTok and other platforms in a single command. Each platform gets its own settings.

Terminal

# Post a video to TikTok and YouTube simultaneously
postiz posts:create \
  -c "New tutorial is live! #coding #tutorial" \
  -m "$VIDEO_URL" \
  -s "2025-03-01T09:00:00Z" \
  --settings '{
    "privacy_level": "PUBLIC_TO_EVERYONE",
    "duet": true,
    "stitch": true,
    "comment": true,
    "autoAddMusic": "no",
    "brand_content_toggle": false,
    "brand_organic_toggle": false,
    "content_posting_method": "DIRECT_POST"
  }' \
  -i "tiktok-id,youtube-id"

# Batch schedule a week of TikTok content
for day in 1 2 3 4 5; do
  postiz posts:create \
    -c "Day $day tips! #dailytips" \
    -m "day${day}-video-url" \
    -s "2025-03-0${day}T10:00:00Z" \
    --settings '{"privacy_level":"PUBLIC_TO_EVERYONE","duet":true,"stitch":true,"comment":true,"autoAddMusic":"no","brand_content_toggle":false,"brand_organic_toggle":false,"content_posting_method":"DIRECT_POST"}' \
    -i "tiktok-id"
done

Privacy Levels

Public

PUBLIC_TO_EVERYONE

Friends

MUTUAL_FOLLOW_FRIENDS

Followers

FOLLOWER_OF_CREATOR

Only You

SELF_ONLY

Start posting to TikTok

Install Postiz Agent and automate your TikTok content strategy with AI-powered scheduling and publishing.

Ready to get started?

Grow your social media presence with Postiz.
Schedule, analyze, and engage with your audience.

Grow your social media presence with Postiz.