
Postbolt
- Updated March 3, 2026
- Whitemarmot/postbolt-mcp
PostBolt is a MCP server that publishes content to 13+ social media platforms from AI agents through the PostBolt API.
About
PostBolt MCP exposes a multi-platform social publishing API so Claude Code, Cursor, and similar agents can ship posts to more than thirteen networks from one tool call pattern. founders feel this pain at launch: the product is ready but cross-posting devolves into tab switching and inconsistent formatting. Wiring PostBolt through stdio MCP lets your agent draft, schedule logic, and publish as part of the same session where you fixed the changelog or landing page. The manifest requires a PostBolt API key prefixed with sk_ via POSTBOLT_API_KEY; version 1.0.2 is the published npm identifier postbolt-mcp. It is a distribution integration, not an analytics or community-management suite—pair it with measurement tools if you need funnel feedback after posts go live.
- Publish to 13+ social media platforms from any AI agent via MCP
- stdio npm package postbolt-mcp v1.0.2 with required POSTBOLT_API_KEY (sk_)
- Single integration surface for cross-posting launch threads and product updates
- GitHub repository Whitemarmot/postbolt-mcp for server source
- Designed for agent-driven go-to-market bursts without manual per-platform login loops
Postbolt by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env POSTBOLT_API_KEY=YOUR_POSTBOLT_API_KEY postbolt-mcp -- npx -y postbolt-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | postbolt-mcp |
|---|---|
| Transport | STDIO |
| Auth | Required |
| Last updated | March 3, 2026 |
| Repository | Whitemarmot/postbolt-mcp ↗ |
What it does
Post launch announcements and recurring social content to many networks from one MCP-connected agent instead of juggling thirteen separate dashboards.
Who is it for?
Best when you want one MCP publish path for multi-network launch and update cadences.
Skip if: Skip if you need only one network with native scheduling, deep ad-manager APIs, or on-prem social tools without a third-party key.
What you get
Your agent publishes across 13+ platforms via MCP once POSTBOLT_API_KEY is configured, so distribution stays in your automated launch workflow.
- Posts published to 13+ connected social platforms via agent tools
- MCP-configured social distribution lane for launch and updates
By the numbers
- 13+ social media platforms supported per server description
- Server version 1.0.2
- Transport: stdio npm identifier postbolt-mcp
README.md
postbolt-mcp
MCP server for PostBolt - publish to social media from any AI agent.
This package lets MCP-compatible clients (Claude Desktop, Claude Code, Cursor, Windsurf) schedule and publish posts to 13+ social platforms through PostBolt's API with zero code.
Setup
Get your API key at postbolt.dev
Add to your MCP client config:
{
"mcpServers": {
"postbolt": {
"command": "npx",
"args": ["-y", "postbolt-mcp"],
"env": {
"POSTBOLT_API_KEY": "sk_..."
}
}
}
}
Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Claude Code: ~/.claude/settings.json under mcpServers
Tools
publish_post
Publish a post immediately to one or more platforms.
| Parameter | Type | Required | Description |
|---|---|---|---|
| content | string | yes | The text content |
| platforms | string[] | yes | Platforms to publish to |
| media_id | number | no | ID from upload_media |
| custom_content | object | no | Platform-specific overrides |
schedule_post
Schedule a post for future publication.
| Parameter | Type | Required | Description |
|---|---|---|---|
| content | string | yes | The text content |
| platforms | string[] | yes | Platforms to publish to |
| scheduled_for | string | yes | ISO 8601 datetime |
| media_id | number | no | ID from upload_media |
| custom_content | object | no | Platform-specific overrides |
list_posts
List your posts with optional filtering.
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | number | no | Page number |
| status | string | no | Filter: pending, scheduled, published, partial, failed |
get_post
Get detailed info about a post including per-platform results.
| Parameter | Type | Required | Description |
|---|---|---|---|
| post_id | number | yes | The post ID |
update_post
Update a scheduled post's content or time.
| Parameter | Type | Required | Description |
|---|---|---|---|
| post_id | number | yes | The post ID |
| content | string | no | New text content |
| custom_content | object | no | New platform overrides |
| scheduled_for | string | no | New ISO 8601 datetime |
cancel_post
Cancel a scheduled post (refunds your post quota).
| Parameter | Type | Required | Description |
|---|---|---|---|
| post_id | number | yes | The post ID |
upload_media
Upload an image to attach to posts (JPEG, PNG, GIF, WebP, max 10MB).
| Parameter | Type | Required | Description |
|---|---|---|---|
| file_path | string | yes | Absolute path to the image |
Resources
| Resource | URI | Description |
|---|---|---|
| Profile | postbolt://profile | Your plan, quota, and allowed platforms |
| Accounts | postbolt://accounts | Connected social media accounts |
Supported Platforms
twitter, linkedin, facebook, instagram, threads, tiktok, pinterest, bluesky, telegram, youtube, reddit, google_business, snapchat
Platform availability depends on your PostBolt plan.
Examples
Publish to Twitter and LinkedIn:
"Post 'Just shipped v2.0!' to Twitter and LinkedIn"
Schedule with platform-specific content:
"Schedule a post for tomorrow at 9am: 'Big news coming' on Twitter, 'We are excited to announce our latest update' on LinkedIn"
Upload an image and post:
"Upload /tmp/screenshot.png and post it to Instagram with caption 'Check this out'"
License
MIT
Protected by Copyright01 - Ref: CR-2026-91956 - Certified 2026-03-03
Recommended MCP Servers
How it compares
Multi-platform social publish MCP, not an SEO or analytics server.
FAQ
Who is PostBolt for?
Developers and agent users who need to push posts to many social platforms from Claude Code, Cursor, or other MCP clients in one workflow.
When should I use PostBolt?
Use it at launch distribution and for ongoing update posts when you want your agent to publish across 13+ networks instead of copying into each app.
How do I add PostBolt to my agent?
Install npm package postbolt-mcp with stdio transport, set required environment variable POSTBOLT_API_KEY (sk_), and register the server in your MCP configuration.