Install
The node requires n8n running on Node.js 20.15 or newer.
- n8n UI (recommended)
- npm (manual, non-Docker)
- Docker
- Open Settings.
- Choose Community Nodes.
- Click Install.
- Enter
n8n-nodes-postqueenas the npm package name. - Click Install again to confirm.

Credentials
Two fields and the node is talking to your account:
Create a new PostQueen API credential in n8n, paste your key, and set the host if you self-host.
n8n validates the credential against a live endpoint when you save, so a typo shows up immediately.
Check it before you build anything
Drop a PostQueen node into a blank workflow, choose Get Channels, and execute the node on its own.Your connected channels come back as JSON with their ids. Doing this first separates a credential
problem from a workflow problem, which is much harder to tell apart later.
Get Channels returns nothing, or an auth error
Get Channels returns nothing, or an auth error
The key or the host. Check the key is pasted in full, and if you self-host, that Host ends
with
/api. Without that suffix the request lands on the web interface rather than the API,
which fails without explaining itself.PostQueen does not appear in the node list after installing
PostQueen does not appear in the node list after installing
Community nodes need n8n restarted before they show up. If it is still missing after a
restart, check whether your n8n allows community nodes at all, since some hosted plans
restrict them.
A post is created but never publishes
A post is created but never publishes
Check the date. Nothing validates that it is in the future, so a past date is accepted and
goes out on the next pass. Send ISO 8601 in UTC.
Operations
Seven operations cover everything the node can do:Fields on Generate Video
Need the list of voices? Run Video Function with the function name
loadVoices and the
identifier of the video type you plan to use, such as image-text-slides. Both fields are required
on that operation.There is no PostQueen trigger node. Triggers come from n8n itself: a Schedule trigger, an RSS feed, or a webhook. Form submissions work too. Any of them can start a workflow that ends with a new post on your calendar.
Workflow ideas
Blog on autopilot. An RSS trigger watches your blog, an AI node writes a caption for each new article, and Create Post schedules it to every channel you have connected. You publish the article and walk away: she carries it out to every feed while you write the next one.veo3 or image-text-slides, vertical or horizontal. Add a voiceover if you want one.
Create Post then queues the finished video to your channel, so a new upload is waiting every
morning whether you opened your laptop or not. Video generation is not something the postqueen CLI
offers, so this node is where you reach for it without writing code.
Source and releases
postqueen-n8n on GitHub
The node’s source, plus ready-made versions of every workflow here.
n8n-nodes-postqueen on npm
The package page with versions and release notes.
Next steps
Public API
The API this node calls, if you want to go beyond the node.
Create Post
Every field of the create-post request body, with per-provider settings.
Zapier
Using another automation tool? The same recipes work in Zapier.
Make
Prefer Make? It calls the same API and the same ideas carry over.