Instagram Publisher
by @snoopyrain
Publish posts to Instagram. Use when the user says 'post to Instagram', 'publish on IG', 'schedule Instagram post', 'create Instagram carousel', 'post a Reel...
clawhub install instagram-publisherπ About This Skill
name: instagram-publisher description: "Publish posts to Instagram. Use when the user says 'post to Instagram', 'publish on IG', 'schedule Instagram post', 'create Instagram carousel', 'post a Reel', or wants to publish photos, carousels, or Reels to their Instagram Business account." version: 1.0.0 metadata: openclaw: emoji: "πΈ" homepage: https://boring-doc.aiagent-me.com/getting-started/mcp.html requires: config: - MCP Connector link from boring.aiagent-me.com (contains embedded auth token)
Boring Instagram Publisher
Publish photos, carousels, and Reels to Instagram. Powered by Boring.
Security & Data Handling
https://boring.aiagent-me.com/mcp/t/xxxxx...) contains an embedded authentication token. Treat it like a password β do not share it publicly.Prerequisites
1. Sign up at boring.aiagent-me.com with Google 2. Connect Instagram β requires an Instagram Business or Creator account (personal accounts not supported) 3. Get your MCP link: Go to Settings β copy your MCP Server URL (contains your auth token β treat it like a password) 4. Add to Claude: Paste the MCP link as a Connector β no install, no API key needed
Workflow
Step 1: List Accounts
Call boring_list_accounts and filter for instagram platform.
Step 2: Confirm Content
IMPORTANT: Instagram requires media. Text-only posts are NOT supported.
| Type | Media | Specs | |------|-------|-------| | Photo | 1 image | JPG/PNG, 320x320 to 1440x1440 | | Carousel | 2-10 images | All images must have matching aspect ratios | | Reels | 1 video | MP4, 9:16 vertical, up to 90 seconds |
Step 3: Prepare Media
Media must be publicly accessible URLs:
boring_upload_file with file_path β returns public URLboring_upload_from_url β re-hosts to Boring cloud storagemedia_urlsStep 4: Publish or Schedule
Call boring_publish_post:
boring_publish_post(
account_id="",
platform="instagram",
text="Your caption here #hashtags",
media_urls=["https://...image.jpg"]
)
For carousel (2-10 images):
boring_publish_post(
account_id="",
platform="instagram",
text="Swipe to see more!",
media_urls=["https://...1.jpg", "https://...2.jpg", "https://...3.jpg"]
)
For Reels (video):
boring_publish_post(
account_id="",
platform="instagram",
text="Check out this Reel!",
media_urls=["https://...video.mp4"]
)
Schedule: Add scheduled_at in ISO 8601 format:
boring_publish_post(..., scheduled_at="2025-12-25T10:00:00Z")
Step 5: Report
Show the post ID and confirmation. If scheduled, show the scheduled time.
Managing Scheduled Posts
boring_list_scheduled_posts with platform: "instagram"boring_cancel_scheduled_post with scheduled_post_idInstagram-Specific Notes
instagram_business_content_publish, instagram_business_basicError Handling
| Error | Solution |
|-------|----------|
| MediaRequired | Instagram requires media β ask user for an image or video |
| InvalidCarouselSize | Carousel needs 2-10 images |
| CarouselCreationFailed | Check that all images have the same aspect ratio |
| MediaTooLarge | Images max 8MB |
| TokenExpired | Reconnect at boring.aiagent-me.com |
Documentation
Full API docs: boring-doc.aiagent-me.com
βοΈ Configuration
1. Sign up at boring.aiagent-me.com with Google 2. Connect Instagram β requires an Instagram Business or Creator account (personal accounts not supported) 3. Get your MCP link: Go to Settings β copy your MCP Server URL (contains your auth token β treat it like a password) 4. Add to Claude: Paste the MCP link as a Connector β no install, no API key needed