Schedule and manage social media posts via Metricool API.
- X (Twitter)
- Bluesky
- Threads
Copy the metricool folder to your Moltbot skills directory, or download metricool.skill from releases.
- Get your API token from Metricool dashboard
- Add credentials to
~/.moltbot/moltbot.json:
{
"env": {
"vars": {
"METRICOOL_USER_TOKEN": "your-api-token",
"METRICOOL_USER_ID": "your@email.com"
}
}
}Or add to your workspace .env file.
| Script | Purpose |
|---|---|
get-brands.js |
List connected accounts/brands |
schedule-post.js |
Schedule posts to multiple platforms |
list-scheduled.js |
View queued posts |
best-time.js |
Get optimal posting times |
# List your brands
node scripts/get-brands.js
# Schedule a post
node scripts/schedule-post.js '{
"platforms": ["linkedin", "x", "bluesky"],
"text": "Hello world!",
"datetime": "2026-01-30T09:00:00",
"timezone": "America/New_York"
}'
# Check scheduled posts
node scripts/list-scheduled.js --start 2026-01-30 --end 2026-02-05MIT