Post the same content to multiple platforms
posts_cross_postPost the same content to multiple platforms at once.
⚠️ IMPORTANT - Choose the correct mode based on user intent:
DRAFT MODE (is_draft=True) Use when user says: "draft", "borrador", "save for later", "don't publish" → Posts are saved but NOT published. User can edit them later.
IMMEDIATE MODE (publish_now=True) Use when user says: "publish now", "post now", "immediately" → Posts go live IMMEDIATELY on all platforms.
SCHEDULED MODE (default) Use when user says: "schedule", "programar", "in X hours" → Posts are scheduled for 1 hour from now.
⚠️ MULTI-ACCOUNT USERS:
To pick a specific account per platform, pass
account_idsparallel toplatforms(same order, comma-separated). Use empty string for a position to fall back to profile/auto-resolution.To target multiple accounts of the SAME platform in one call, repeat the platform: platforms='twitter,twitter', account_ids='acc_a,acc_b'.
If you omit account_ids and the user has multiple accounts for any of the requested platforms, the tool errors with the candidate list - use it to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The post text/content (required) | |
| is_draft | No | Set to True to save as DRAFT (not published). Use when user wants to save without publishing Default: False. | |
| platforms | Yes | Comma-separated list of platforms (e.g., 'twitter,linkedin,bluesky'). Repeat a platform to target multiple accounts of it: 'twitter,twitter'. (required) | |
| media_urls | No | Comma-separated URLs of media files to attach Default: . | |
| profile_id | No | Scope auto-resolution to one profile when account_ids is empty. Default: . | |
| account_ids | No | Comma-separated account IDs, parallel to `platforms`. Empty positions fall back to profile/auto-resolution. Required for multi-account users to disambiguate. Default: . | |
| publish_now | No | Set to True to publish IMMEDIATELY to all platforms Default: False. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |