You're viewing a demo portfolio

Join the waitlist
PRSM

publish_content

Active

Tool of SendIt

declared in 0.1.0

Publish content to social media platforms. MEDIA RULES: • mediaUrl must be a public HTTPS URL — NOT a local file path. • If the user shares an image/video in chat, call create_upload_session FIRST to get a browser upload link, then use the returned URL here. • Text-only works on: LinkedIn, Threads, X, Facebook. • Image required: Instagram, Pinterest. • TikTok supports one video or 1-35 Photo Mode images. • Video required: YouTube. Call validate_content to check before publishing.

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
          }
        }
      }
    },
    "team_id": {
      "type": "string",
      "description": "Team ID to publish as team. Get available teams with list_teams. If omitted, publishes from personal accounts."
    },
    "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": "Target platforms. Choose based on content type: text-only→LinkedIn/Threads/X, image→Instagram/Threads/Facebook/Pinterest/TikTok Photo Mode, video→Instagram/TikTok/Threads/YouTube"
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

SendIt

https://github.com/Shree-git/sendit

1/7 registries
View full server →