validate_content
ActiveTool of SendIt
Validate content against platform requirements BEFORE publishing. USE THIS WHEN: • Unsure if content will work on target platforms • Publishing to multiple platforms with different requirements • Want to catch errors before attempting publish Returns specific errors (e.g., 'TikTok requires video', 'Instagram needs media') and warnings (e.g., 'text close to character limit').
Parameters schema
{
"type": "object",
"required": [
"platforms",
"content"
],
"properties": {
"content": {
"type": "object",
"required": [
"text"
],
"properties": {
"link": {
"type": "string",
"description": "Pinterest source URL for the pin"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "YouTube video tags"
},
"text": {
"type": "string",
"description": "Post caption/text. Required for all platforms."
},
"title": {
"type": "string",
"description": "YouTube video title, Pinterest pin title"
},
"boardId": {
"type": "string",
"description": "Pinterest only: Board ID to pin to. If not specified, uses first available board."
},
"mediaUrl": {
"type": "string",
"description": "Public HTTPS media URL. Do NOT pass local file paths — use create_upload_session to get a public URL first."
},
"boardName": {
"type": "string",
"description": "Pinterest only: Board name (alternative to boardId). Searches for matching board."
},
"mediaType": {
"enum": [
"image",
"video",
"auto"
],
"type": "string",
"description": "Media type hint: 'image' for photos, 'video' for Reels/TikTok"
},
"mediaUrls": {
"type": "array",
"items": {
"type": "string"
},
"description": "Carousel: Instagram (2-10 images), Threads (2-20 mixed), X (2-4 images)"
},
"description": {
"type": "string",
"description": "YouTube video description"
},
"youtubeMode": {
"enum": [
"auto",
"short",
"standard"
],
"type": "string",
"deprecated": true,
"description": "Deprecated compatibility alias for YouTube mode. Preferred: content.platformSettings.youtube.youtubeMode"
},
"facebookMode": {
"enum": [
"auto",
"reel",
"feed"
],
"type": "string",
"deprecated": true,
"description": "Deprecated compatibility alias for Facebook mode. Preferred: content.platformSettings.facebook.facebookMode"
},
"firstComment": {
"type": "string",
"description": "Instagram first comment text (often used for hashtags)"
},
"threadTweets": {
"type": "array",
"items": {
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Tweet text (max 280 chars)"
},
"mediaUrl": {
"type": "string",
"description": "Optional public HTTPS image or video URL for this tweet"
},
"mediaType": {
"enum": [
"image",
"video",
"auto"
],
"type": "string",
"description": "Media type hint"
},
"mediaUrls": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional multiple images for this tweet (max 4)"
}
}
},
"description": "X (Twitter) only: additional tweets in the thread after the main text. The main text is always the first tweet. Each item here becomes a subsequent reply in the thread."
},
"privacyStatus": {
"enum": [
"public",
"unlisted",
"private"
],
"type": "string",
"description": "YouTube video privacy: public, unlisted, or private"
},
"pinterestBoardId": {
"type": "string",
"deprecated": true,
"description": "Deprecated compatibility alias for Pinterest board targeting. Preferred: content.platformSettings.pinterest.boardId"
},
"platformSettings": {
"type": "object",
"description": "Optional advanced per-platform settings map. Key by platform ID and use it for platform-specific publish options plus per-platform text/title/description overrides.",
"additionalProperties": {
"type": "object",
"additionalProperties": true
}
}
}
},
"platforms": {
"type": "array",
"items": {
"enum": [
"x",
"linkedin",
"linkedin-page",
"facebook",
"instagram",
"threads",
"bluesky",
"mastodon",
"nostr",
"youtube",
"tiktok",
"lemmy",
"discord",
"slack",
"telegram",
"pinterest",
"dribbble",
"devto",
"hashnode",
"gmb",
"whop",
"producthunt"
],
"type": "string"
},
"description": "Platforms to validate against"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
SendIt
https://github.com/Shree-git/sendit
1/7 registries