PostPulse
OfficialAllows scheduling posts and uploading media to Bluesky accounts.
Allows scheduling posts, uploading media, and managing Facebook Pages (feed, reels, stories).
Allows scheduling posts, uploading media, and managing Instagram accounts (feed, reels, stories).
Allows scheduling messages, uploading media, and managing Telegram channels or chats.
Allows scheduling posts and uploading media to Threads accounts.
Allows scheduling posts, uploading media, and managing TikTok accounts (videos, carousels).
Allows scheduling videos, uploading media, and managing YouTube channels (videos, shorts).
PostPulse MCP Server
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.
Features
Multi-platform posting — Schedule posts to 9 social media platforms from a single interface
Media management — Upload images and videos via URL or binary data for use in posts
Account management — List and manage all connected social media accounts
OAuth 2.0 authentication — Secure access via Auth0-based token verification
Streamable HTTP transport — Modern MCP transport protocol for reliable communication
Related MCP server: Postiz MCP Server
Supported Platforms
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 |
Quick Start
Hosted Server (Recommended)
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:
{
"mcpServers": {
"postpulse": {
"url": "https://mcp.post-pulse.com"
}
}
}Install via Smithery
You can also install through Smithery:
npx -y @smithery/cli install post-pulse/mcp-server --client claudeSelf-Hosted
If you prefer to run the server yourself:
Clone the repository:
git clone https://github.com/PostPulse/mcp-server-postpulse.git
cd mcp-server-postpulseInstall dependencies and build:
npm install
npm run buildStart the server:
npm startOr with Docker:
docker build -t mcp-server-postpulse .
docker run -p 3000:3000 mcp-server-postpulseEnvironment Variables
Variable | Default | Description |
|
| Server bind address |
|
| Server port |
| — | Public-facing URL (for OAuth metadata discovery) |
|
| Auth0 issuer URL |
|
| JWKS endpoint |
|
| API audience |
|
| PostPulse API base URL |
| — | Redis connection URL for session/event persistence (required) |
Tools
list_accounts
List 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_chats
List 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 |
| number | Yes | Account ID obtained from |
| string | Yes |
|
Returns: JSON array of destination objects (id, title, type, platform).
upload_media
Upload 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 |
| string | No | Public URL of the media file to import |
| string | No | Base64-encoded media file content |
| string | No | MIME type (e.g., |
| string | No | Filename for the uploaded media |
Either mediaUrl or both mediaData and mediaType must be provided.
schedule_post
Schedule 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 |
| number | Yes | Account ID from |
| string | Yes | Target platform: |
| string | No | Post text/caption |
| string[] | No | Media keys returned by |
| string | Yes | ISO-8601 timestamp (e.g., |
| string | Yes (Facebook) | Facebook Page ID from |
| string | Yes (Telegram) | Telegram Channel/Chat ID from |
| string | No |
|
| string | No | Video title (YouTube, TikTok) |
| string | No | Topic tag (Threads) |
Resources
postpulse://accounts
An MCP resource providing the list of all connected social media accounts. Returns the same data as the list_accounts tool in JSON format.
Authentication
This server uses OAuth 2.0 with Auth0. OAuth metadata is discoverable at /.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server.
Dynamic Client Registration (DCR)
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.
Pre-Registered Client Credentials
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.
Example Workflow
A typical interaction with the PostPulse MCP server:
List accounts to find connected social media profiles
Upload media (optional) to prepare images or videos
Schedule a post with content, media, and a future publish time
User: "Schedule an Instagram reel for tomorrow at 9am with the video at https://example.com/video.mp4 and caption 'Check this out!'"This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PostPulse/mcp-server-postpulse'
If you have feedback or need assistance with the MCP directory API, please join our Discord server