Server data from the Official MCP Registry
Schedule and publish social media posts to 9 platforms from your AI agent
About
Schedule and publish social media posts to 9 platforms from your AI agent
Remote endpoints: streamable-http: https://www.post-bridge.com/api/mcp/mcp
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-jackfriks-post-bridge": {
"url": "https://www.post-bridge.com/api/mcp/mcp"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
Post Bridge Agent Mode
Give your AI agent the ability to post to 9 social media platforms from a single command.
Supports: Instagram, TikTok, YouTube, X (Twitter), LinkedIn, Facebook, Pinterest, Threads, Bluesky
Built on the Post Bridge API. Post Bridge is a social media scheduling tool used by 1,500+ creators and teams to post everywhere from one place.
What Are Skills?
Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. Add this to your project and your AI agent will be able to create, schedule, and publish social media content across 9 platforms.
Install
Skill (works with Claude Code, Cursor, Windsurf, Codex, and other agents):
npx skills add post-bridge-hq/agent-mode
This installs the skill and makes the postbridge-cli CLI available to your agent.
CLI only (no skill, any terminal):
The CLI is published standalone on npm — no install required, npx fetches it on first use:
npx postbridge-cli setup --key pb_live_xxxxx
npx postbridge-cli accounts
Requires Node.js 18+. Install globally with npm i -g postbridge-cli if you'd rather drop the npx prefix.
Claude Code Plugin:
Add the marketplace and install:
/plugin marketplace add post-bridge-hq/agent-mode
/plugin install post-bridge@post-bridge
Or load locally for development:
claude --plugin-dir ./agent-mode
Cursor:
- Open Settings (Cmd+Shift+J)
- Go to "Rules & Command" > "Project Rules"
- Click "Add Rule" > "Remote Rule (GitHub)"
- Enter:
https://github.com/post-bridge-hq/agent-mode.git
Manual:
Clone this repository and copy skills/post-bridge/ to your project's .cursor/skills/ or .claude/skills/ directory.
Setup
- Sign up at post-bridge.com and connect your social accounts
- Enable API access (Settings > API) — $5/month add-on
- Run the setup command:
npx postbridge-cli setup --key pb_live_xxxxx
Tip: You can also set the API key as an environment variable instead of running
setup:export POST_BRIDGE_API_KEY=pb_live_xxxxx(add it to~/.zshrc/~/.bashrcto persist).
Start using it
Ask your AI agent things like:
- "Post this to all my social accounts"
- "Schedule a post for tomorrow at 9am on Instagram and TikTok"
- "Upload this video and post it everywhere"
- "How did yesterday's post perform?"
- "Show my scheduled posts"
- "Delete the draft I made earlier"
What your agent can do
- Post to any or all 9 connected platforms in one command
- Schedule posts for any date/time
- Upload images and videos (automatic format conversion)
- Check analytics — views, likes, comments, shares across TikTok, YouTube, Instagram
- Manage accounts — list connections, check status
- Per-platform overrides — custom captions, TikTok draft mode, YouTube titles, Instagram trial reels, Pinterest boards, etc.
Quick start
# List your connected accounts
npx postbridge-cli accounts
# Post to specific accounts
npx postbridge-cli post --caption "Hello world!" --accounts 1,2,3
# Schedule a post (specific UTC time)
npx postbridge-cli post --caption "Morning post" --accounts 1,2 --schedule "2026-06-20T14:00:00Z"
# Or auto-schedule to your next queue slot
npx postbridge-cli post --caption "Morning post" --accounts 1,2 --use-queue
# Upload media and post with it
npx postbridge-cli upload --file ./video.mp4
npx postbridge-cli post --caption "Check this out" --accounts 1,2,3 --media mid_xxx
# Check analytics
npx postbridge-cli analytics
Supported Platforms
- Instagram (Reels, Stories, Feed)
- TikTok
- YouTube (Shorts)
- X (formerly Twitter)
- Threads
- Bluesky
Media requirements
Some platforms can't publish a text-only post and will fail without an image or video:
| Platform | Media | Accepts |
|---|---|---|
| YouTube | Required | exactly 1 video |
| TikTok | Required | 1 video, or one+ images (photo post) |
| Required | 1–10 images/videos; story = exactly 1; no PDFs | |
| Required | 1 image or video | |
| X (Twitter) | Optional | up to 4 images, or 1 video |
| Optional | 1 video, or one+ images | |
| Optional | up to 20 images, or 1 video, or 1 PDF | |
| Threads | Optional | up to 4 images/videos |
| Bluesky | Optional | up to 4 images, or 1 video |
| Google Business | Optional | text or a single image; no video |
You can create a post without media and add it later with posts:update — but it won't publish to a media-required platform until the media exists.
Troubleshooting
"API key not found"
Run the setup command:
npx postbridge-cli setup --key pb_live_xxxxx
Or set the environment variable manually:
export POST_BRIDGE_API_KEY=pb_live_xxxxx
To persist across sessions, add it to your shell profile (~/.bashrc, ~/.zshrc, etc.).
"Node.js is required"
The CLI is a zero-dependency Node.js script and requires Node.js 18+ (for built-in fetch). Install a recent Node.js version, then retry.
API errors (401, 403)
- Verify your API key is correct
- Check that API access is enabled at post-bridge.com/dashboard/api-keys
- Make sure you have an active subscription with the API add-on ($5/month)
Post failed on one platform
Each platform posts independently. If one fails, the others still go through. Use npx postbridge-cli results --post-id <id> to see per-platform status and error details.
MCP Server
Post Bridge also runs a hosted MCP server, so MCP-compatible clients (Claude, ChatGPT, Cursor, and other agents) can connect directly — no CLI, no install.
- Endpoint:
https://www.post-bridge.com/api/mcp/mcp(streamable HTTP) - Auth: OAuth 2.0 — connect and sign in, no API key needed. (Or pass a
pb_live_...key as a Bearer token, see below.)
Connect
Claude or ChatGPT (one-click, OAuth): add a custom connector / app using the endpoint URL above, sign in to Post Bridge, and authorize. Leave any OAuth client ID/secret blank — the server registers the client automatically.
Claude Desktop (via mcp-remote) — add to claude_desktop_config.json:
{
"mcpServers": {
"post-bridge": {
"command": "npx",
"args": [
"mcp-remote",
"https://www.post-bridge.com/api/mcp/mcp",
"--header",
"Authorization: Bearer pb_live_your_api_key_here"
]
}
}
}
Claude Code / other HTTP MCP clients — add to ~/.claude/settings.json:
{
"mcpServers": {
"post-bridge": {
"type": "http",
"url": "https://www.post-bridge.com/api/mcp/mcp",
"headers": { "Authorization": "Bearer pb_live_your_api_key_here" }
}
}
}
Tools (13)
list_social_accounts, create_post, update_post, get_post, list_posts, delete_post, list_post_results, upload_media, list_media, delete_media, list_analytics, get_analytics_daily, sync_analytics
Try it
- "Which social accounts do I have connected?"
- "Schedule this video to TikTok, Instagram Reels and YouTube Shorts for tomorrow at 9am."
- "Which of my posts got the most views in the last 30 days?"
Full setup guide and tool reference: post-bridge.com/mcp/docs
Links
License
MIT
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
FinAgent
Freeby mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
