← Back to Skills Marketplace
snoopyrain

Boring TikTok Publisher

by snoopyrain · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
126
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install boring-tiktok-publisher
Description
Publish videos and photo carousels to TikTok using Boring. Use when the user says 'post to TikTok', 'upload TikTok video', 'create TikTok post', 'publish Tik...
README (SKILL.md)

Boring TikTok Publisher

Publish videos and photo carousels to TikTok. Powered by Boring.

Security & Data Handling

  • MCP link is a credential: Your MCP Server URL contains an embedded authentication token. Treat it like a password — do not share it publicly. Regenerate anytime in Settings.
  • Media uploads: Video files and photos are uploaded to Boring's Google Cloud Storage to make them accessible for TikTok's API. TikTok requires media for all posts.
  • Data flow: Your content and media are sent from Boring's server to TikTok's API on your behalf via your connected OAuth token.
  • No local credentials: No local API keys or environment variables needed. All auth is embedded in the MCP link.

Prerequisites

  1. Sign up at boring.aiagent-me.com with Google
  2. Connect TikTok account via OAuth
  3. Get your MCP link: Go to Settings → copy your MCP Server URL (contains your auth token — treat it like a password)
  4. Add to Claude: Paste the MCP link as a Connector — no install, no API key needed

Workflow

Step 1: List Accounts

Call boring_list_accounts and filter for tiktok platform.

Step 2: Determine Content Type

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
  • Caption: Optional, max 2,200 characters
  • Media is required — TikTok does not support text-only posts

Step 3: Prepare Media

Upload files to get public URLs:

  • Local files: boring_upload_file with file_path
  • External URLs: boring_upload_from_url
  • Google Drive: Pass directly

Step 4: Publish

Call boring_publish_post:

Video post:

boring_publish_post(
  account_id="\x3Ctiktok_account_id>",
  platform="tiktok",
  text="Caption for the video #fyp #trending",
  media_urls=["https://...video.mp4"]
)

Photo carousel:

boring_publish_post(
  account_id="\x3Ctiktok_account_id>",
  platform="tiktok",
  text="Swipe through these photos!",
  media_urls=["https://...1.jpg", "https://...2.jpg", "https://...3.jpg"]
)

Draft Mode

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="\x3Ctiktok_account_id>",
  platform="tiktok",
  text="Review this before posting",
  media_urls=["https://...video.mp4"],
  draft=true
)

This is useful when:

  • The user wants to preview before going live
  • Adding TikTok-specific effects or music in the app
  • Content needs final approval

Step 5: Report

Show:

  • Post ID and success status
  • If draft: inform user to check their TikTok inbox to finalize

TikTok-Specific Notes

  • Media required: TikTok needs either a video or photos
  • Privacy: Default is PUBLIC_TO_EVERYONE. Other options: MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY
  • Video limits: Max 4GB, max 10 minutes
  • Photo carousel: Up to 35 images (PNG auto-converts to JPEG)
  • Draft mode: Sends to creator's inbox for manual publish
  • Token: 24-hour access token with auto-refresh (refresh token lasts 1 year)
  • Permissions: video.upload, video.publish

Error Handling

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

Documentation

Full API docs: boring-doc.aiagent-me.com

Usage Guidance
This skill appears to do what it says: it uses a Boring MCP connector to upload media and publish to TikTok. Before installing, confirm these items: (1) Understand that the MCP Connector URL contains an embedded auth token and grants Boring permission to act on your TikTok accounts — treat it like a password and only paste it into trusted places. (2) Media you upload will be stored on Boring's Google Cloud Storage and forwarded to TikTok, so do not upload content you consider highly sensitive unless you trust Boring's handling and retention policies. (3) Verify the Boring service/website and its privacy/security docs (who can access stored media, retention, and ability to revoke tokens). (4) Prefer using draft mode for initial tests to avoid accidental public posts. (5) If you are concerned about autonomous posting, restrict how the agent may call skills or require explicit user confirmation before publishing. (6) If you stop using the service, revoke the MCP token in your Boring settings immediately.
Capability Analysis
Type: OpenClaw Skill Name: boring-tiktok-publisher Version: 1.0.1 The skill bundle provides a legitimate interface for publishing videos and photo carousels to TikTok via the 'Boring' MCP service. It includes transparent documentation regarding data handling, specifically noting that media is uploaded to Google Cloud Storage for TikTok API compatibility and warning users that the MCP Connector URL contains sensitive authentication tokens. No malicious instructions, obfuscation, or unauthorized data exfiltration patterns were identified in SKILL.md or _meta.json.
Capability Assessment
Purpose & Capability
Name/description match the instructions: the SKILL.md shows how to list accounts, upload media, and call boring_publish_post to publish to TikTok. The declared requirement (an MCP Connector link containing an embedded auth token) is consistent with a third‑party service proxying TikTok API calls.
Instruction Scope
Runtime instructions only reference Boring connector calls (boring_list_accounts, boring_upload_file, boring_upload_from_url, boring_publish_post). They ask the agent to upload media (local files, external URLs, Google Drive) which is expected for a publishing tool. No instructions ask the agent to read unrelated system files or environment variables. Note: allowing upload of local file paths and Google Drive links gives the skill access to any media the user supplies.
Install Mechanism
Instruction-only skill with no install spec or code files, so nothing is written to disk or fetched during install. This is a low-risk delivery mechanism and consistent with the skill being a connector wrapper.
Credentials
No environment variables are requested, but the skill requires an MCP Connector link that embeds an auth token. That connector is effectively a high‑privilege credential (it grants Boring access to the user's connected TikTok account(s) and can upload/publish on the user's behalf). This is proportionate to the stated purpose, but is sensitive: the MCP link should be treated like a password and may allow broad account actions and media access.
Persistence & Privilege
always is false (no forced inclusion). Model invocation is enabled (default), which means the agent could call this skill autonomously if permitted — this is platform default behavior. The skill does not request persistent agent changes or system-wide config access.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install boring-tiktok-publisher
  3. After installation, invoke the skill by name or use /boring-tiktok-publisher
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Added security and data handling section, highlighting the importance of protecting the MCP link and describing how media and credentials are managed. - Updated metadata to specify MCP Connector link as a required configuration, clarifying onboarding steps. - Revised prerequisite instructions to emphasize credential security and clarify the MCP link's usage. - No changes to publishing workflow or feature set.
v1.0.0
boring-tiktok-publisher 1.0.0 – Initial release - Publish videos and multi-image carousels to TikTok using Boring. - Supports both direct publishing and draft mode for creator inbox review. - Allows setting captions, privacy levels, and integrates with Google Drive or file uploads. - Includes error handling guidance and TikTok-specific media requirements. - Easy setup: sign up with Google, connect TikTok, get your MCP link, and add as a Claude connector.
Metadata
Slug boring-tiktok-publisher
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Boring TikTok Publisher?

Publish videos and photo carousels to TikTok using Boring. Use when the user says 'post to TikTok', 'upload TikTok video', 'create TikTok post', 'publish Tik... It is an AI Agent Skill for Claude Code / OpenClaw, with 126 downloads so far.

How do I install Boring TikTok Publisher?

Run "/install boring-tiktok-publisher" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Boring TikTok Publisher free?

Yes, Boring TikTok Publisher is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Boring TikTok Publisher support?

Boring TikTok Publisher is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Boring TikTok Publisher?

It is built and maintained by snoopyrain (@snoopyrain); the current version is v1.0.1.

💬 Comments