@posteverywhere/mcp

@posteverywhere/mcp

Enables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.

Category
访问服务器

README

@posteverywhere/mcp — Social Media MCP Server for Claude, Cursor & AI Agents

npm version npm downloads License: MIT GitHub stars

Official Model Context Protocol server for PostEverywhere — let Claude Code, Claude Desktop, Cursor, 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 Node.js SDK instead — full TypeScript types, retry handling, error classes.

🔗 Quick Links

Resource URL
🌐 Homepage posteverywhere.ai
🛠️ Developers landing page posteverywhere.ai/developers
📖 API Documentation developers.posteverywhere.ai
📦 This MCP on npm npmjs.com/package/@posteverywhere/mcp
💻 This MCP on GitHub github.com/posteverywhere/mcp
📦 Node SDK (npm) npmjs.com/package/posteverywhere
💻 Node SDK (GitHub) github.com/posteverywhere/sdk
🎛️ Dashboard app.posteverywhere.ai
🔑 Get an API key app.posteverywhere.ai/developers
💵 Pricing posteverywhere.ai/pricing
📚 Help Center posteverywhere.ai/support
🧠 Model Context Protocol modelcontextprotocol.io
🐛 Issues / bug reports github.com/posteverywhere/mcp/issues
📧 Support support@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
  • get_post — get full details for a single post including all destinations
  • create_post — create and schedule a post to one, several, or all connected accounts
  • 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

Media

  • list_media — list files in your media library
  • get_media — get media file details and processing status
  • 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 variable Required Description
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

Resource Per minute Per hour Per day
General API calls 60 1,000
Posts 60 200 1,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 server PostEverywhere SDK Direct 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 for AI-assisted social media Programmatic integrations Any 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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选