posteverywhere/mcp

🌐 Social Media
0 Views
0 Installs

πŸ“‡ ☁️ 🏠 - Hosted MCP server to schedule and publish across 11 social platforms (Instagram, LinkedIn, TikTok, X, YouTube, Facebook, Threads, Pinterest, Bluesky, Discord, Telegram). 32 tools covering posts, campaigns, bulk operations, media, analytics, webhooks, and AI captions. Connect with one URL, or run locally via npx -y @posteverywhere/mcp.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "posteverywhere-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "posteverywhere-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

@posteverywhere/mcp β€” Social Media MCP Server for Claude, ChatGPT, Cursor, Codex & AI Agents

npm version npm downloads License: MIT GitHub stars Glama quality score

Official Model Context Protocol server for PostEverywhere β€” let Claude Code, Claude Desktop, ChatGPT (via the hosted connector), Cursor, OpenAI Codex, and other MCP-compatible AI clients schedule and publish social media posts to Instagram, TikTok, YouTube, LinkedIn, Facebook, X (Twitter), Threads, and Pinterest using natural language.

πŸ’‘ Building a programmatic integration? Use the companion @posteverywhere/sdk Node.js SDK instead β€” full TypeScript types, retry handling, error classes.

πŸ”— Quick Links

ResourceURL
🌐 Homepageposteverywhere.ai
πŸ› οΈ Developers landing pageposteverywhere.ai/developers
πŸ“– API Documentationdevelopers.posteverywhere.ai
πŸ“¦ This MCP on npmnpmjs.com/package/@posteverywhere/mcp
πŸ’» This MCP on GitHubgithub.com/posteverywhere/mcp
πŸ“¦ Node SDK (npm)npmjs.com/package/@posteverywhere/sdk
πŸ’» Node SDK (GitHub)github.com/posteverywhere/sdk
πŸŽ›οΈ Dashboardapp.posteverywhere.ai
πŸ”‘ Get an API keyapp.posteverywhere.ai/developers
πŸ’΅ Pricingposteverywhere.ai/pricing
πŸ“š Help Centerposteverywhere.ai/support
🧠 Model Context Protocolmodelcontextprotocol.io
πŸ› Issues / bug reportsgithub.com/posteverywhere/mcp/issues
πŸ“§ Supportsupport@posteverywhere.ai

What is MCP?

Model Context Protocol (MCP) is an open standard from Anthropic that lets AI assistants connect to external tools and data sources. Once you connect this MCP server, your AI assistant can:

  • Schedule posts across all your connected social accounts
  • Generate AI images and attach them to posts
  • List, edit, retry, and delete scheduled or published posts
  • Surface per-platform publishing results including failure reasons

…all from natural-language prompts inside Claude, Cursor, or any MCP-compatible client.

Quick Start

1. Get an API key

Sign up free at posteverywhere.ai/signup (7-day trial), connect your social accounts, then create an API key at Settings β†’ Developers. Choose your scopes:

  • Read β€” list accounts, posts, and media
  • Write β€” create, edit, delete posts and media
  • AI β€” generate images using AI models

2. Add the MCP server to your AI client

Claude Code

claude mcp add posteverywhere -- npx -y @posteverywhere/mcp

Then set POSTEVERYWHERE_API_KEY in your environment, or pass it as an argument:

claude mcp add posteverywhere -e POSTEVERYWHERE_API_KEY=pe_live_your_key_here -- npx -y @posteverywhere/mcp

πŸ“– Claude Code MCP docs β†’

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "posteverywhere": {
      "command": "npx",
      "args": ["-y", "@posteverywhere/mcp"],
      "env": {
        "POSTEVERYWHERE_API_KEY": "pe_live_your_key_here"
      }
    }
  }
}

Restart Claude Desktop. The PostEverywhere tools will appear in the πŸ”¨ menu.

πŸ“– Claude Desktop MCP docs β†’

Cursor

In Cursor, open Settings β†’ MCP β†’ Add new MCP server and paste:

{
  "posteverywhere": {
    "command": "npx",
    "args": ["-y", "@posteverywhere/mcp"],
    "env": {
      "POSTEVERYWHERE_API_KEY": "pe_live_your_key_here"
    }
  }
}

πŸ“– Cursor MCP docs β†’

Other MCP clients

This package exposes a standard stdio MCP server. Any MCP-compatible client can connect using the same configuration shape.

3. Try it out

Once connected, ask your AI assistant things like:

"List my connected social accounts"

"Schedule a post to all my accounts for tomorrow at 2pm: Just shipped a new feature πŸš€"

"Show me my recent posts and their publishing status"

"Generate an image of a sunset over mountains in 16:9 and post it to Instagram and X"

"Retry the failed destinations on my latest post"

"What are my last 10 posts on TikTok?"

Available Tools

Accounts

  • list_accounts β€” list all connected social accounts and their health status
  • get_account β€” get details for a specific account (token expiry, can-post status)

Posts

  • list_posts β€” list posts filtered by status (scheduled, published, failed, draft) or platform. Drafts include their target accounts + per-platform content so you can review them before publishing.
  • get_post β€” get full details for a single post including all destinations (for drafts, the saved accounts + per-platform content)
  • create_post β€” publish now, schedule for later, or save as a draft for human review (draft: true)
  • schedule_post β€” publish or schedule a draft (the approval step β€” pass scheduled_for, or publish_now: true)
  • update_post β€” modify a scheduled or draft post (content, schedule time, accounts)
  • delete_post β€” delete a scheduled or draft post
  • get_post_results β€” per-platform publishing results, errors, and live URLs
  • retry_failed_post β€” retry every failed destination of a post

πŸ§‘β€πŸ’Ό Human-in-the-loop drafts β€” let the agent draft posts for you to approve before anything goes live:

  1. "Draft a LinkedIn post about our launch β€” don't publish it yet" β†’ create_post(draft: true)
  2. "Show me my drafts" β†’ list_posts(status: "draft") / get_post
  3. "Looks good β€” schedule it for Tuesday 9am" β†’ schedule_post(scheduled_for: …) (or "publish it now" β†’ publish_now: true)

Drafts are saved in your PostEverywhere account and never publish until you schedule them β€” review them in the app or via the agent.

Media

  • list_media β€” list files in your media library
  • get_media β€” get media file details and processing status
  • upload_media_from_url β€” import an image from any public URL into the library (one call, returns a media_id ready for create_post)
  • delete_media β€” remove a media file

AI

  • generate_image β€” generate an image from a text prompt (4 models, 7 aspect ratios)

πŸ“– Full tool reference and parameters β†’

Example Prompts

These all work out of the box once the server is connected:

Scheduling

  • "Schedule a Christmas post for December 25th at 9am: Merry Christmas to our amazing community πŸŽ„"
  • "Post this to Instagram and TikTok only: Behind-the-scenes of our latest feature drop"
  • "Queue up a week of daily morning posts starting Monday at 9am"

Content generation

  • "Generate a 9:16 image of a coffee shop at sunrise and schedule it as a TikTok post for tomorrow"
  • "Create a square image of abstract green shapes for a LinkedIn carousel"

Monitoring

  • "What posts failed in the last week and why?"
  • "Show me the publishing results for my last Instagram Reel"
  • "Which of my accounts need to be reconnected?"

Recovery

  • "Retry the failed LinkedIn destination on post abc-123"
  • "Delete all my draft posts older than 30 days"

Each natural-language prompt maps to one or more MCP tool calls β€” the agent figures out the right sequence.

Supported Platforms

All eight platforms work on every plan:

  • Instagram β€” feed, reels, stories, carousels
  • TikTok β€” videos, photo carousels
  • YouTube β€” videos with thumbnails, descriptions, tags
  • LinkedIn β€” text, images, video, document carousels
  • Facebook β€” pages, video, reels, multi-image
  • X (Twitter) β€” text, threads, media (tier-aware char limits)
  • Threads β€” text and media posts
  • Pinterest β€” pins to boards

Configuration

Environment variableRequiredDescription
POSTEVERYWHERE_API_KEYβœ…Your API key from Settings β†’ Developers. Format: pe_live_...
POSTEVERYWHERE_BASE_URL❌Override base URL (default https://app.posteverywhere.ai). Useful for self-hosted deployments.

Rate Limits

ResourcePer minutePer hourPer day
General API calls601,000β€”
Posts602001,000
AI generationβ€”60β€”

Hitting a 429? The MCP server returns a clear rate_limit_exceeded code with retry_after seconds β€” the agent will know to wait and retry.

πŸ“– Rate limit details β†’

How it compares

This MCP serverPostEverywhere SDKDirect REST API
Use with Claude / Cursor / MCP clientsβœ… Native❌❌
Use in Node.js code❌ (use SDK)βœ…βœ…
Natural-language schedulingβœ…βŒβŒ
TypeScript typesβœ…βœ…Manual
Auto-retry / backoffβœ…βœ…Manual
Best forAI-assisted social mediaProgrammatic integrationsAny HTTP client / language

Documentation

MCP & AI Tooling Resources

PostEverywhere Around the Web

Per-Platform Schedulers

PostEverywhere is the backend for all of these β€” every plan includes every platform:

  • πŸ“· Instagram Scheduler β€” feed posts, reels, stories, carousels
  • 🎡 TikTok Scheduler β€” videos, photo carousels, full content disclosure flags
  • πŸ“Ί YouTube Scheduler β€” videos with thumbnails, tags, descriptions, privacy controls
  • πŸ’Ό LinkedIn Scheduler β€” personal + Company Page posts, document carousels, video
  • πŸ‘ Facebook Scheduler β€” Pages, Reels, video, multi-image carousels
  • 🐦 X (Twitter), Threads, Pinterest β€” all included on every plan

Related

Support

License

MIT β€” see LICENSE.


Built by the team at PostEverywhere. The smarter way to schedule social media to Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest β€” now with native MCP support for AI agents.

Related MCP Servers

06ketan/substack-ops

🐍 🏠 - Substack with zero AI API keys. 26 tools (posts, notes, comments, replies, reactions, restacks). Host LLM drafts via proposereply β†’ confirmreply tokens. SQLite dedup, JSONL audit, dry-run default. Install: uvx substack-ops mcp install cursor.

🌐 Social Media0 views
abhineet34/linkedin-mcp-server

πŸ“‡ 🏠 - Local LinkedIn MCP server for posting to LinkedIn from Claude. 9 tools β€” create/edit/delete posts (text, image, article), upload images, fetch profile, look up company pages, and check follower counts. Uses the official LinkedIn REST API with OAuth 2.0 (wmembersocial, OIDC).

🌐 Social Media0 views
anwerj/youtube-uploader-mcp

🏎️ ☁️ - AI‑powered YouTube uploaderβ€”no CLI, no YouTube Studio. Uploade videos directly from MCP clients with all AI capabilities.

🌐 Social Media0 views
arjun1194/insta-mcp

πŸ“‡ 🏠 - Instagram MCP server for analytics and insights. Get account overviews, posts, followers, following lists, post insights, and search for users, hashtags, or places.

🌐 Social Media0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.