doodle top mobile

Automate TikTok with Paperclip

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 GuidePaperclip

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 Paperclip?

Paperclip is an open-source orchestration framework for building β€œzero-human companies” by hiring and managing teams of AI agents. It handles content, social media distribution, marketing, dev, QA, and more from a single dashboard.

πŸ‘₯

Agent Teams

Paperclip manages teams of AI agents that work together. Assign a content agent, a scheduling agent, and a review agent to your social media workflow.

πŸ“Š

Single Dashboard

Monitor all your AI agents and their social media tasks from one unified dashboard. Track posts, schedules, and performance in real time.

βš™

Orchestration

Paperclip orchestrates complex multi-agent workflows. Chain content creation, review, approval, and publishing into automated pipelines.

How Postiz Works with Paperclip

Paperclip integrates Postiz as a tool in its agent orchestration framework. Agents in your Paperclip team can call Postiz commands to manage social media workflows end-to-end.

  • βœ“Install Postiz Agent and set your POSTIZ_API_KEY
  • βœ“Paperclip discovers Postiz through tool integration
  • βœ“Assign Postiz commands to specialized agents in your team
  • βœ“Orchestrate multi-step workflows with approval chains
  • βœ“Monitor everything from the Paperclip dashboard

Install Postiz

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

# Set your API key
export POSTIZ_API_KEY=your_api_key

# Paperclip discovers Postiz through
# its tool integration system
# and assigns it to agent teams

TikTok Posting with Paperclip

Paperclip assigns specialized agents to each step of your social media workflow β€” content creation, review, scheduling, and publishing β€” all orchestrated through Postiz.

πŸ“Ž

From Any Chat App

Paperclip assigns specialized agents to ...

Send a message to Paperclip 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.

Paperclip

Content Agent: Drafted a post about
  the feature launch for TikTok.

Review Agent: Approved with minor
  edits. Ready to publish.

Scheduling Agent: Found TikTok
  integration via Postiz.
  Scheduled for tomorrow 9:00 AM.

  Post ID: abc-123
  Status: Scheduled
πŸ“Ž

Scheduled & Proactive

Paperclip orchestrates recurring co...

Paperclip 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.

paperclip.yaml (pipeline)

pipelines:
  daily_social:
    schedule: "0 9 * * 1-5"
    agents:
      - role: content_creator
        task: "Draft a TikTok post
          about trending industry topics"
      - role: reviewer
        task: "Review and polish the
          draft for engagement"
      - role: publisher
        task: "Schedule via Postiz
          for today at noon"

Why Paperclip + Postiz for TikTok

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

  • βœ“Multi-agent teams for quality TikTok content β€” draft, review, publish
  • βœ“Single dashboard to monitor all social media automation
  • βœ“Orchestrated pipelines from content creation to publishing
  • βœ“Scheduled pipelines for hands-free daily posting
  • βœ“Cross-post to TikTok + other platforms in a single pipeline
  • βœ“Open-source β€” fully customizable agent workflows

SKILL.md (auto-discovered)

---
name: postiz
description: Social media automation
  CLI for scheduling posts across
  30+ platforms including TikTok
metadata:
  paperclip:
    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 Claude Code

Postiz Agent works as a CLI tool with any AI agent that can execute shell commands β€” including Anthropic's Claude Code.

C

Claude Code

by Anthropic

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.

Claude Code

> 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.