🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

postbolt-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postbolt-mcp

MCP server for PostBolt - publish to social media from any AI agent

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

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.

ParameterTypeRequiredDescription
contentstringyesThe text content
platformsstring[]yesPlatforms to publish to
media_idnumbernoID from upload_media
custom_contentobjectnoPlatform-specific overrides

schedule_post

Schedule a post for future publication.

ParameterTypeRequiredDescription
contentstringyesThe text content
platformsstring[]yesPlatforms to publish to
scheduled_forstringyesISO 8601 datetime
media_idnumbernoID from upload_media
custom_contentobjectnoPlatform-specific overrides

list_posts

List your posts with optional filtering.

ParameterTypeRequiredDescription
pagenumbernoPage number
statusstringnoFilter: pending, scheduled, published, partial, failed

get_post

Get detailed info about a post including per-platform results.

ParameterTypeRequiredDescription
post_idnumberyesThe post ID

update_post

Update a scheduled post's content or time.

ParameterTypeRequiredDescription
post_idnumberyesThe post ID
contentstringnoNew text content
custom_contentobjectnoNew platform overrides
scheduled_forstringnoNew ISO 8601 datetime

cancel_post

Cancel a scheduled post (refunds your post quota).

ParameterTypeRequiredDescription
post_idnumberyesThe post ID

upload_media

Upload an image to attach to posts (JPEG, PNG, GIF, WebP, max 10MB).

ParameterTypeRequiredDescription
file_pathstringyesAbsolute path to the image

Resources

ResourceURIDescription
Profilepostbolt://profileYour plan, quota, and allowed platforms
Accountspostbolt://accountsConnected 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

Keywords

mcp

FAQs

Package last updated on 03 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts