← 返回 Skills 市场
snoopyrain

Boring TikTok Publisher

作者 snoopyrain · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
126
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (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

安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install boring-tiktok-publisher
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /boring-tiktok-publisher 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug boring-tiktok-publisher
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 126 次。

如何安装 Boring TikTok Publisher?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install boring-tiktok-publisher」即可一键安装,无需额外配置。

Boring TikTok Publisher 是免费的吗?

是的,Boring TikTok Publisher 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Boring TikTok Publisher 支持哪些平台?

Boring TikTok Publisher 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Boring TikTok Publisher?

由 snoopyrain(@snoopyrain)开发并维护,当前版本 v1.0.1。

💬 留言讨论