LaunchKit · 2026
Back to Skills

mixpost

Mixpost is a self-hosted social media management software that helps you.

5
2.8k downloads
by @lao9s

Setup & Installation

openclaw skills install @lao9s/mixpost

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install mixpost

What This Skill Does

Mixpost is a self-hosted social media management tool for scheduling and publishing content across platforms like Facebook, Twitter/X, Instagram, LinkedIn, TikTok, YouTube, and others. It exposes a REST API for managing posts, media, tags, and connected accounts programmatically.

Self-hosted deployment means your content and credentials never pass through a third-party SaaS provider.

When to use it

  • Schedule posts to multiple platforms from a script
  • Bulk-upload media files and tag them before publishing
  • Query all scheduled or failed posts for a status report
  • Approve pending posts in an automated review workflow
  • Delete published posts from both the app and the social platform simultaneously

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Schedule a post to go live on Christmas morning across all connected accounts

AGENT
  1. 1Fetch connected accounts via GET /accounts to retrieve account IDs
  2. 2Upload any media files via POST /media and collect returned media UUIDs
  3. 3Construct the post payload with date 2024-12-25, time 10:00, schedule true, and the target account IDs
  4. 4Send POST /posts with the payload to create and schedule the post
  5. 5Confirm by fetching the new post UUID via GET /posts/:postUuid and returning the scheduled time
OUTPUT

Post created and scheduled for 2024-12-25 at 10:00 America/New_York across the selected accounts

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

MIXPOST_URL environment variable (URL of your self-hosted Mixpost instance)MIXPOST_ACCESS_TOKEN environment variable (generated from Mixpost dashboard under Access Tokens)MIXPOST_WORKSPACE_UUID environment variable (copied from the Social Accounts page in Mixpost)Self-hosted Mixpost instance