typefully
X, LinkedIn, Mastodon, Threads, and Bluesky scheduling via Typefully API. Create drafts, schedule posts, and manage content across multiple social platforms.
Install
mkdir -p .claude/skills/typefully && curl -L -o skill.zip "https://mcp.directory/api/skills/download/1844" && unzip -o skill.zip -d .claude/skills/typefully && rm skill.zipInstalls to .claude/skills/typefully
About this skill
Typefully Skill
Schedule and publish content to X, LinkedIn, Mastodon, Threads, and Bluesky through the Typefully API.
Setup
- Create a Typefully account at https://typefully.com
- Connect social media accounts in Typefully
- Generate an API key in Typefully settings
- Set the environment variable
export TYPEFULLY_API_KEY="your-typefully-api-key"
Environment Variables
| Variable | Required | Description |
|---|---|---|
| TYPEFULLY_API_KEY | Yes | Your Typefully API key |
Commands
User and Accounts
typefully me # Get current user info
typefully social-sets # List connected social accounts
typefully social-set <id> # Get details for a specific account
Drafts
typefully drafts # List all drafts for an account
typefully draft <id> # Get a specific draft
typefully create-draft "content" # Create a new draft
typefully update-draft <id> "text" # Update a draft
typefully delete-draft <id> # Delete a draft
Draft Options
| Option | Description |
|---|---|
| --social-set-id <id> | Account ID required for drafts |
| --schedule <time> | ISO 8601 datetime |
| --now | Publish immediately after creating |
| --next-free-slot | Schedule for optimal posting time |
| --title <text> | Internal draft title |
| --share | Generate public share URL |
| --thread | Treat content as multi-line thread |
| --reply-to <url> | Reply to an existing post URL |
| --community <id> | Post to a community |
Filtering Drafts
typefully drafts # Default 10 drafts sorted by updated
typefully drafts --status draft # Only draft status
typefully drafts --status scheduled # Only scheduled
typefully drafts --status published # Only published
typefully drafts --limit 25 # More results per page
typefully drafts --offset 10 # Skip first 10 results
typefully drafts --order-by created_at # Sort by date
Tags
typefully tags # List tags for an account
typefully create-tag "name" # Create a new tag
typefully delete-tag "slug" # Delete a tag
Media
typefully upload-media <filename> # Get upload URL for media
typefully media-status <id> # Check media processing status
Examples
Create a Simple Post
# Get your account ID
typefully social-sets
# Create a draft
typefully create-draft "Hello world! This is my first post." \
--social-set-id 12345
# Create and publish immediately
typefully create-draft "Breaking news!" \
--social-set-id 12345 --now
Create a Thread
typefully create-draft "1/ I am excited to share some updates...
2/ We have been working hard on new features...
3/ Here is what we have been building...
4/ Stay tuned for more!" \
--social-set-id 12345 --thread
Schedule for Later
# Schedule for specific time
typefully create-draft "Mark your calendars! Launching next week." \
--social-set-id 12345 \
--schedule "2025-01-25T09:00:00Z"
# Schedule for optimal posting time
typefully create-draft "Best time to post..." \
--social-set-id 12345 \
--next-free-slot
Reply to a Post
typefully create-draft "Great thread! I completely agree." \
--social-set-id 12345 \
--reply-to "https://x.com/username/status/1234567890"
Post to a Community
typefully create-draft "Sharing with the community..." \
--social-set-id 12345 \
--community 1493446837214187523
Work with Tags
# List available tags
typefully tags --social-set-id 12345
# Create a tag
typefully create-tag "announcements" --social-set-id 12345
# Create draft with tag
typefully create-draft "Big announcement!" \
--social-set-id 12345 \
--tags announcements
Upload Media
# Get upload URL
typefully upload-media screenshot.png --social-set-id 12345
# Check status
typefully media-status <media-id> --social-set-id 12345
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /v2/me | Get current user |
| GET | /v2/social-sets | List social sets |
| GET | /v2/social-sets/{id} | Get social set details |
| GET | /v2/social-sets/{id}/drafts | List drafts |
| POST | /v2/social-sets/{id}/drafts | Create draft |
| GET | /v2/social-sets/{id}/drafts/{id} | Get draft |
| PATCH | /v2/social-sets/{id}/drafts/{id} | Update draft |
| DELETE | /v2/social-sets/{id}/drafts/{id} | Delete draft |
| GET | /v2/social-sets/{id}/tags | List tags |
| POST | /v2/social-sets/{id}/tags | Create tag |
| DELETE | /v2/social-sets/{id}/tags/{slug} | Delete tag |
| POST | /v2/social-sets/{id}/media/upload | Get upload URL |
| GET | /v2/social-sets/{id}/media/{id} | Check media status |
Supported Platforms
- X
- Mastodon
- Threads
- Bluesky
X Automation Compliance
Adhere to the X Automation Rules when using this skill with X:
- Do not post similar content across multiple accounts.
- Do not use automation to manipulate trending topics.
- Send automated replies only to users who have opted in.
- Send only one automated response per user interaction.
- Automated likes and bulk following are prohibited.
- Automated bulk adding to lists is prohibited.
- Follow the X media policy for all automated content.
- Mark accounts as sensitive if posting graphic media.
- Do not use automation to impersonate others.
- Do not post misleading links.
Notes
- All requests require the TYPEFULLY_API_KEY environment variable.
- Drafts are private by default.
- Use --share for a public URL.
- The --now flag publishes immediately without saving a draft.
- Drafts are saved for review when you do not use --now.
- Rate limits apply per user and per social set.
- Do not attempt to bypass rate limits.
Resources
- Typefully at https://typefully.com
- Typefully API Docs at https://docs.typefully.com
- X Automation Rules at https://help.x.com/en/rules-and-policies/x-automation
More by openclaw
View all →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
rust-coding-skill
UtakataKyosui
Guides Claude in writing idiomatic, efficient, well-structured Rust code using proper data modeling, traits, impl organization, macros, and build-speed best practices.
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.