Social media scheduler for Instagram, Facebook, YouTube, TikTok, LinkedIn, X, Bluesky, and Telegram.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
An MCP (Model Context Protocol) server that connects AI assistants to PostPulse β a social media management platform. Schedule posts, upload media, and manage accounts across Instagram, Facebook, YouTube, TikTok, Threads, LinkedIn, X (Twitter), Bluesky, and Telegram β all through natural language.
| Platform | Placements | Content Types | Requirements |
|---|---|---|---|
| Feed, Reels, Stories | Image, Video | Business Account | |
| Feed, Reels, Stories | Image, Video | Page | |
| YouTube | Video, Shorts | Video | Channel |
| TikTok | Video, Carousel | Image, Video | Account |
| Threads | Post | Image, Video | Account |
| Post | Image, Video | Personal Account | |
| X (Twitter) | Post | Image, Video | Account |
| Bluesky | Post | Image | Account |
| Telegram | Message | Text, Image, Video | Channel/Chat |
PostPulse runs a hosted MCP server at https://mcp.post-pulse.com β no setup required. Point your MCP client to this URL and authenticate via OAuth.
Example MCP client configuration:
You can also install through Smithery:
If you prefer to run the server yourself:
Or with Docker:
| Variable | Default | Description |
|---|---|---|
HOST | 0.0.0.0 | Server bind address |
PORT | 3000 | Server port |
PUBLIC_URL | β | Public-facing URL (for OAuth metadata discovery) |
POSTPULSE_AUTH_ISSUER | https://auth.post-pulse.com/ | Auth0 issuer URL |
POSTPULSE_AUTH_JWKS_URI | https://auth.post-pulse.com/.well-known/jwks.json | JWKS endpoint |
POSTPULSE_AUDIENCE | https://api.post-pulse.com | API audience |
POSTPULSE_API_URL | https://api.post-pulse.com | PostPulse API base URL |
REDIS_URL | β | Redis connection URL for session/event persistence (required) |
list_accountsList all connected social media accounts with their IDs, platforms, usernames, and display names. Use this as the first step to discover available accounts before scheduling posts or accessing chats.
Parameters: None
Returns: JSON array of account objects (id, platform, username, name).
list_chatsList publishing destinations for accounts that have sub-destinations. Facebook accounts publish to Pages, and Telegram accounts publish to channels or chats. Call this before scheduling posts to either platform β use the returned id as the facebookPageId or telegramChannelId in schedule_post.
Only supports FACEBOOK and TELEGRAM. Other platforms do not have sub-destinations and should be posted to directly.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
accountId | number | Yes | Account ID obtained from list_accounts |
platform | string | Yes | FACEBOOK or TELEGRAM |
Returns: JSON array of destination objects (id, title, type, platform).
upload_mediaUpload media files (images, videos) for use in scheduled posts. Supports two modes: importing from a public URL (with automatic processing) or uploading binary data directly as base64. Returns a media key to reference in schedule_post.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
mediaUrl | string | No | Public URL of the media file to import |
mediaData | string | No | Base64-encoded media file content |
mediaType | string | No | MIME type (e.g., image/jpeg, video/mp4). Required when using mediaData |
mediaName | string | No | Filename for the uploaded media |
Either mediaUrl or both mediaData and mediaType must be provided.
schedule_postSchedule a social media post to one or more connected accounts. Supports platform-specific options like publication type (feed, reel, story), video titles, and topic tags. Posts are scheduled for a future time using ISO-8601 timestamps.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
accountId | number | Yes | Account ID from list_accounts |
platform | string | Yes | Target platform: INSTAGRAM, FACEBOOK, TELEGRAM, YOUTUBE, TIKTOK, THREADS, LINKEDIN, X_TWITTER, BLUE_SKY |
content | string | No | Post text/caption |
mediaPaths | string[] | No | Media keys returned by upload_media |
scheduledTime | string | Yes | ISO-8601 timestamp (e.g., 2025-01-15T10:00:00Z) |
facebookPageId | string | Yes (Facebook) | Facebook Page ID from list_chats. Required when platform is FACEBOOK |
telegramChannelId | string | Yes (Telegram) | Telegram Channel/Chat ID from list_chats. Required when platform is TELEGRAM |
publicationType | string | No | FEED, REEL, or STORY (Instagram/Facebook, defaults to FEED) |
title | string | No | Video title (YouTube, TikTok) |
topicTag | string | No | Topic tag (Threads) |
postpulse://accountsAn MCP resource providing the list of all connected social media accounts. Returns the same data as the list_accounts tool in JSON format.
This server uses OAuth 2.0 with Auth0. OAuth metadata is discoverable at /.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server.
MCP clients that support OAuth can register automatically via Dynamic Client Registration (RFC 7591). The server advertises a registration_endpoint in its OAuth metadata, so compliant clients (such as Claude Desktop, Cursor, etc.) will handle the entire OAuth flow β registration, authorization, and token exchange β without any manual setup from the user.
If you already have client credentials created through the PostPulse Developer Portal, you can configure your MCP client to use them directly instead of DCR. Pass your client_id and client_secret in the OAuth authorization code flow against the PostPulse authorization server.
A typical interaction with the PostPulse MCP server:
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/postpulse)<a href="https://allmcps.com/mcp/postpulse"><img src="https://allmcps.com/api/badge/postpulse?style=directory" alt="PostPulse on AllMCPs" /></a>