Your agent posts even when you are not watching
OpenClaw runs on your own machine or server, and it drives Posty over MCP. It can watch a folder, start on a schedule, upload media, then create posts in the calendar.
Install the Posty CLI: npm install -g posty-cli, then sign in: posty auth:login. The package SKILL.md file describes every command, details: https://posty.hu/ai/openclaw
Four commands to get started
You install the CLI, sign in to the account, fetch the integrations, then create the first post. After that you can run the CLI from cron and from CI too.
# Install the official CLI$ npm install -g posty-cli# Sign in to the Posty account$ posty auth:login# Fetch the available integrations$ posty integrations:list[{ "id": "cmf3k7…", "name": "Cafe · Instagram" }]# Create a scheduled post$ posty posts:create \$ -c "New brunch menu this Saturday." \$ -i "cmf3k7…" \$ -s "2026-08-16 09:00" --timezone Europe/Budapest✅ Post created successfully!{ "id": "cmf7p2…", "state": "QUEUE" }
The CLI writes JSON to standard output, and status and errors to standard error. On error the exit code is non-zero.
Media: always two steps
$ posty upload ./termekfoto.jpg✅ File uploaded successfully!{ "path": "https://…/uploads/termekfoto.jpg" }$ posty posts:create \$ -c "Our new product is here." \$ -m "https://…/uploads/termekfoto.jpg" \$ -i "cmf3k7…" \$ -s "2026-08-16 18:00" --timezone Europe/Budapest
From background work to approval
OpenClaw reaches the same Posty account over MCP, the CLI or the REST API. You review the finished plan in the calendar.
From task to schedule
OpenClaw creates a scheduled post from the instruction in the current session. In Posty it can also carry a multi-step job through in the background.
Media in two steps
It uploads the file first with the posty upload command, then passes the URL it gets to the posts:create -m option. Publishing does not accept a raw file path.
A calendar you can read
OpenClaw fetches the posts on the calendar, then rearranges the plan as you ask. With the posts:find-slot command it can also look for a free slot.
CLI for automation
OpenClaw can also reach the same account through the CLI. In cron and CI it authenticates with the POSTY_API_KEY environment variable, with no browser sign-in.
Public REST API
The public REST API is the third path to the same account. OpenClaw can reach Posty this way too, when the task calls for it.
Approval in the calendar
OpenClaw can work in the background, but every decision is visible. You review and approve the posts in the Posty calendar before they go out.
Connecting OpenClaw and Posty
You connect the accounts in Posty, and OpenClaw gets a ready-made config block. Then you check the plan in the calendar.
Connect the accounts
On the Posty web app, you connect your social accounts through OAuth. This is where you pick which platforms OpenClaw can work on.
$ posty integrations:list[{ "id": "cmf3k7…", "name": "Cafe · Instagram" },{ "id": "cmf3k9…", "name": "Cafe · Facebook" }]
Create a key
On the Settings → Developers page you create a new Posty access key that starts with psty_mcp_…. This is also where you get the ready-made config block for OpenClaw.
# Settings → Developers → New key# We show the key once, when you create it.# For the command line and the REST API:POSTY_API_KEY=AZ_API_KULCSOD# MCP clients get a separate key:# psty_mcp_…
Hand it to OpenClaw
You paste the block from Posty into the mcp.servers section of the OpenClaw config, with streamable-http transport. Or you install the CLI and set the POSTY_API_KEY environment variable.
{"mcp": {"servers": {"posty": {"url": "https://api.posty.hu/mcp/AZ_API_KULCSOD","transport": "streamable-http"}}}}
Check them in the calendar
OpenClaw schedules the posts, and you review and approve them in the Posty calendar. That way you check the plan it built in the background before anything goes out.
$ posty posts:list[{ "id": "cmf7p2…", "state": "QUEUE","publishDate": "2026-08-16T07:00:00Z" },{ "id": "cmf7q8…", "state": "DRAFT","publishDate": "2026-08-18T06:30:00Z" }]
What is OpenClaw?
OpenClaw is an open agent runner that you host on your own machine or server. It is not a chat window. It keeps running in the background, can watch a folder, start on a schedule, and carry a multi-step job through on its own.
You can give it a watched folder or a scheduled task. OpenClaw notices the new file, does the steps it needs to, then finishes the work even when you are not watching.
It connects to Posty as an MCP client. You paste the block you get into the mcp.servers section of the OpenClaw config, with streamable-http transport. For cron and CI you can also use the CLI with the POSTY_API_KEY environment variable, straight to the same Posty account.
Runs in your own environment
OpenClaw runs on your own machine or server. You do not have to keep a chat window open for the whole background job.
Works in the background
It can watch a folder, start on a schedule, and carry several steps through. It can finish the job even when you are busy with something else.
Connects as an MCP client
The block from Posty goes into the mcp.servers config, with streamable-http transport. That is how OpenClaw connects to the Posty MCP server.
A predictable interface for background work
Posty gives OpenClaw machine-readable JSON output. It writes status and errors to a separate stream. A failed run exits with a non-zero code.
- JSON on the outputThe agent parses the machine-readable JSON written to standard output directly.
- Clear error signalsThe CLI writes errors to standard error. A failed run exits with a non-zero code.
- Bundled skill fileThe SKILL.md in the npm package teaches the agent how to use the CLI correctly.
- Flat command setThe agent gets a flat command set, so it does not have to track hidden state.
- Three access modesThe agent can reach the same Posty account over MCP, the CLI and the REST API.
---name: postydescription: Posty schedules and publishes social postsfrom the command line.homepage: https://posty.hu---# Output contractEvery command prints its JSON result — and nothingelse — to stdout; status lines, warnings and errorsgo to stderr, and every failure exits 1.# Two Hard Rules (Read First)Rule 1 — Authenticate before anything.Rule 2 — Every file passed to `-m` MUST first gothrough `posty upload`.
The agent learns how to use the CLI from the SKILL.md file in the npm package, with no extra training.
The full CLI workflow
With the posty commands you can create a post, find a time slot, check status, upload media and read analytics. You can drop them into cron and CI too.
posty posts:createNew post: scheduled, as a draft, or published right away.posty posts:listPosts in the given period. You can filter by client group too.posty posts:delete <id>Delete a post by id.posty posts:find-slot <id>The next free publishing time for a social account.posty posts:status <id>Switch a post between draft and scheduled.posty posts:missing <id>Content already on the platform for a post with a missing id.posty posts:connect <id>Connect a post to content that is already published.posty integrations:listConnected social accounts and their ids. This is what the -i flag needs.posty integrations:groupsThe list of client groups, if you work with more than one brand.posty integrations:settings <id>An account's settings schema, rules, length limit, and tools.posty integrations:trigger <id> <method>Call a platform tool for extra data, for example to search for music.posty upload <fájl>Upload a media file. The URL you get back goes into the posts:create -m flag.posty analytics:platform <id>A social account's stats going back the given number of days.posty analytics:post <id>Performance of a single post.posty auth:loginLog in with OAuth2 device authorization: the browser opens, you approve.posty auth:logoutClear stored login data.posty auth:statusShows whether you're logged in, and checks access too.posty config:set <kulcs> <érték>Save a CLI setting, for example the default timezone.posty config:get [kulcs]Print the saved settings.-c, --contentThe post text. Repeat it to make a thread: the first is the post, the rest are comments.-m, --mediaMedia for the -c that comes before it. The URL has to come from posty upload.-i, --integrationsIds of the target social accounts, comma-separated.--date, -sWhen to publish. Either with an explicit offset, or together with the --timezone flag.--timezoneIANA timezone name, for example Europe/Budapest. Only pass a date with no offset together with this.-t, --typeschedule (default), draft, or now.-d, --delayDelay in MINUTES between items in the thread.--jsonThe full post description from a JSON file, when the flags are not enough.--settingsPlatform-specific settings as JSON. The schema comes from integrations:settings.The commands write JSON to standard output, and status and errors to standard error.
One account, every channel
Connect your accounts in a few clicks, then post to every channel from Posty.
TikTok
Threads
YouTube
X
Bluesky
Google Business
Discord
Telegram
Slack
Hungarian pricing, no hidden costs
Every plan starts with a 7-day free trial. We bill in forints and issue a VAT invoice.
Alap
- 5 social accounts
- 1 workspaces
- One user
- Advanced image editor
- Viral video + UGC templates
- Automations
- API access
- Posting with an AI agent
- Unlimited posts
- Multiple accounts per platform
- Scheduling
- Calendar view
- Repeated posts
- Post delays
- Studio access
- Analytics (beta)
- Post comments
- Dark & light mode
Pro
Most popular- 10 social accounts
- 1 workspaces
- 3 users
- Advanced image editor
- Viral video + UGC templates
- Automations
- API access
- Posting with an AI agent
- Unlimited posts
- Multiple accounts per platform
- Scheduling
- Calendar view
- Repeated posts
- Post delays
- Studio access
- Analytics (beta)
- Post comments
- Dark & light mode
Kreátor
- 30 social accounts
- 5 workspaces
- Unlimited users
- Advanced image editor
- Viral video + UGC templates
- Automations
- API access
- Posting with an AI agent
- Unlimited posts
- Multiple accounts per platform
- Scheduling
- Calendar view
- Repeated posts
- Post delays
- Studio access
- Analytics (beta)
- Post comments
- Dark & light mode
Csapat
Highest limits- 100 social accounts
- 15 workspaces
- Unlimited users
- Advanced image editor
- Viral video + UGC templates
- Automations
- API access
- Posting with an AI agent
- Unlimited posts
- Multiple accounts per platform
- Scheduling
- Calendar view
- Repeated posts
- Post delays
- Studio access
- Analytics (beta)
- Post comments
- Dark & light mode
Common questions
What is OpenClaw, and where does it run?
How do I connect OpenClaw to Posty?
Can I pass a direct file path for the post?
Which CLI package should I install?
Where do I check OpenClaw's decisions?
Which plan includes these connections?
Add Posty to OpenClaw.
Connect your accounts, hand over the config block, then leave the scheduling to the agent. Check the finished plan in the Posty calendar before it goes out.
Start your free trial