post_to_social_media
Schedule and publish content to Facebook and Instagram with optional images and hashtags for social media marketing.
Instructions
Post content to Facebook and/or Instagram. Requires Meta API configuration. Can schedule posts for future publishing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hashtags | No | Optional: Comma-separated hashtags (without # symbol) | |
imageUrl | No | Optional: URL to image (required for Instagram) | |
message | Yes | Post caption/message | |
platforms | Yes | Comma-separated platforms: facebook, instagram, or both | |
scheduleTime | No | Optional: Schedule for future (YYYY-MM-DD HH:MM format) |
Input Schema (JSON Schema)
{
"properties": {
"hashtags": {
"description": "Optional: Comma-separated hashtags (without # symbol)",
"type": "string"
},
"imageUrl": {
"description": "Optional: URL to image (required for Instagram)",
"type": "string"
},
"message": {
"description": "Post caption/message",
"type": "string"
},
"platforms": {
"description": "Comma-separated platforms: facebook, instagram, or both",
"type": "string"
},
"scheduleTime": {
"description": "Optional: Schedule for future (YYYY-MM-DD HH:MM format)",
"type": "string"
}
},
"required": [
"platforms",
"message"
],
"type": "object"
}