Install
$ agentstack add mcp-whitemarmot-postbolt-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v1.0.2 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v1.0.2. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
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 | | mediaid | number | no | ID from uploadmedia | | 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 | | scheduledfor | string | yes | ISO 8601 datetime | | mediaid | number | no | ID from uploadmedia | | customcontent | 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 | |-----------|------|----------|-------------| | postid | number | yes | The post ID | | content | string | no | New text content | | customcontent | 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
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Whitemarmot
- Source: Whitemarmot/postbolt-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v1.0.2 Imported from the upstream source.