TikTok Post
Upload and schedule videos to TikTok using the Publora MCP server. Supports privacy controls, interaction settings (comments, duet, stitch), and commercial content disclosure.
Prerequisites
Plans: Free Starter (15 posts/month), Pro, Premium
Getting Started
- Create account at publora.com/register (free)
- Connect TikTok via OAuth in Publora Dashboard
- Get API key at publora.com/settings/api
- Configure MCP in Claude Desktop (
~/.claude/claude_desktop_config.json
):
json
{
"mcpServers": {
"publora": {
"type": "http",
"url": "https://mcp.publora.com",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
REST API Fallback
If the MCP server is unavailable or returns errors, use the REST API directly:
Base URL: https://api.publora.com/api/v1
Authentication: Use
header (NOT
):
bash
# Get your connected platforms
curl -X GET "https://api.publora.com/api/v1/platform-connections" \
-H "x-publora-key: sk_your_api_key"
# Create a post
curl -X POST "https://api.publora.com/api/v1/create-post" \
-H "x-publora-key: sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"platforms": ["tiktok-99887766"],
"content": "Video caption here #hashtag",
"scheduledTime": "2026-03-25T10:00:00Z",
"platformSettings": {
"tiktok": {
"viewerSetting": "PUBLIC_TO_EVERYONE",
"allowComments": true
}
}
}'
Platform ID Format: where
is from
response.
📖
Full API documentation: docs.publora.com
Plan Limits
| Plan | Posts/month | Price |
|---|
| Starter | 15 | Free |
| Pro | 100/account | $2.99/account/month |
| Premium | 500/account | $9.99/account/month |
Platform Limits (API vs Native App)
Critical API limits that differ from native TikTok app:
Video Requirements
| Specification | API Limit | Native App |
|---|
| Max duration | 10 minutes | 60 minutes |
| Min duration | 3 seconds | 3 seconds |
| Max file size | 4 GB | 4 GB |
| Min frame rate | 23 FPS | 23 FPS |
| Formats | MP4, MOV, WebM | MP4, MOV, WebM |
Caption Limits
| Element | API Limit | Native App |
|---|
| Caption length | 2,200 characters | 4,000 characters |
| Hashtags | Included in caption count | Included in caption count |
Rate Limits
| Limit | Value |
|---|
| Posts per day | 15-20 |
| Videos per minute | Max 2 |
Available Tools
create_post
Create a new TikTok post.
Parameters:
- : Array with your TikTok connection ID (e.g., )
- : Video caption (up to 2,200 characters)
- : ISO 8601 datetime (required - for immediate posting, use current time + 1 minute)
get_upload_url
Get presigned URL for video upload.
Parameters:
- : Post ID to attach video to
- : Video file name (e.g., "video.mp4")
- : , , or
- :
list_posts / update_post / delete_post
Manage scheduled and draft posts.
Platform Settings (via REST API)
TikTok has 7 platform-specific settings controlled via
:
json
{
"platformSettings": {
"tiktok": {
"viewerSetting": "PUBLIC_TO_EVERYONE",
"allowComments": true,
"allowDuet": false,
"allowStitch": false,
"commercialContent": false,
"brandOrganic": false,
"brandedContent": false
}
}
}
Viewer Settings (Required)
| Value | Description |
|---|
| Anyone can view (default) |
| Only mutual followers |
| Only your followers |
| Only you (draft-like) |
Interaction Settings
| Setting | Default | Description |
|---|
| | Whether viewers can comment |
| | Whether viewers can create Duets |
| | Whether viewers can Stitch |
Commercial Content Settings
| Setting | Default | Description |
|---|
| | Is this commercial content? |
| | Organic brand promotion |
| | Paid partnership/sponsored |
Note: If
is
, at least one of
or
must also be
.
Note:
is not available via MCP - use REST API for these settings.
Critical Restrictions
1. Unaudited Apps = PRIVATE Only
CRITICAL: If your TikTok app hasn't passed TikTok's review process, you can
ONLY post PRIVATE videos (
). All other
values will be overridden to
.
To post public videos, your app must be audited by TikTok.
2. Video Only Platform
TikTok does NOT support:
- Text-only posts
- Image posts
- Photo carousels
Every post must include a video.
3. Minimum 23 FPS
Videos below 23 frames per second will be rejected by TikTok.
Examples
Basic Video Post
Post this video to TikTok:
"How we built our startup in 60 seconds #startup #tech #coding"
Private Draft (Testing)
Upload this video as a private draft to TikTok (only I can see it):
"Testing new content format"
Use
viewerSetting: "SELF_ONLY"
for testing before making public.
Branded Content
Post this sponsored video to TikTok with proper disclosure:
"Loving this new product from @brand! #ad #sponsored"
Set
and
for paid partnerships.
Scheduled Post
Schedule this TikTok video for tomorrow at 6 PM:
"Weekend vibes incoming! #weekend #fun"
Supported Video Formats
| Format | Recommended | Notes |
|---|
| MP4 | Yes | Most reliable |
| MOV | Yes | Apple format |
| WebM | Yes | Web format |
| AVI | Accepted by Publora | May be rejected by TikTok |
| MKV | Accepted by Publora | May be rejected by TikTok |
Recommendation: Use MP4 for best compatibility.
Best Practices
Content
- Hook in first 3 seconds: Grab attention immediately
- Optimal length: 15-60 seconds for best engagement
- Trending sounds: Use trending audio when possible
- Hashtag strategy: 3-5 relevant hashtags
Technical
- Vertical video: 9:16 aspect ratio performs best
- High quality: At least 720p resolution
- 23+ FPS: Ensure smooth playback
- MP4 format: Most reliable format
Timing
- Best times: 7-9 AM, 12-3 PM, 7-11 PM in target timezone
- Frequency: 1-3 posts per day for growth
- Consistency: Regular posting schedule helps algorithm
Troubleshooting
| Error | Cause | Solution |
|---|
unaudited_client_can_only_post_to_private_accounts
| App not approved | Submit app for TikTok review or use |
| Daily limit reached | Wait 24 hours |
| Video too long/short | Ensure 3 seconds to 10 minutes |
| Wrong video format | Use MP4, MOV, or WebM |
| "23 FPS required" | Low frame rate | Re-encode video at 23+ FPS |
| "TikTok requires selecting who can view" | Missing viewerSetting | Always include in platformSettings |