social-mcp

social-mcp

A self-hosted MCP server for managing Instagram and Facebook Page content, including posting, scheduling, analytics, and autopilot features.

Category
访问服务器

README

social-mcp

A self-hosted MCP server that gives Claude the ability to manage your Instagram and Facebook Page — post photos, carousels, and Reels, schedule posts, pull engagement analytics, and run an autopilot that plans and queues two weeks of content from your photo inbox in one go.

You drop files into a folder, ask Claude what to post and when, and it handles the rest: staging, uploading, archiving, and scheduling. Everything runs on your own machine; no third-party service touches your tokens or your media.


What you can do with it

Post immediately

  • Photo to Instagram feed + Story
  • Photo to Facebook Page feed + Story
  • Both platforms at once (one command, file archived once)
  • Carousel (2–10 photos) to IG, FB, or both
  • Reel / video to IG, FB, or both
  • Cross-post to Facebook Groups

Schedule for later

  • Any of the above, at a specific time or relative (in 2h, tomorrow at 19:30)
  • Persistent scheduler survives container restarts

Analytics

  • Account-level reach, engagement, followers (IG and FB)
  • Per-post insights — likes, comments, shares, saves, plays
  • Top-performing posts ranked by engagement (useful as caption examples)

Autopilot

  1. autopilot_plan — scans your inbox, deduplicates burst shots by perceptual hash, clusters photos taken close together in time and place into carousels, and proposes a two-week posting schedule
  2. You review the plan and write captions
  3. autopilot_commit — validates and queues everything at once

How it works

The server implements the Model Context Protocol (MCP), which is the standard way to give AI assistants access to external tools. Claude Code (or Claude Desktop) connects to it and gains a set of posting/scheduling/analytics tools backed by the Meta Graph API.

For local files, an nginx sidecar briefly serves each image at a one-shot public URL so Meta's servers can fetch it; the URL is torn down and the file is archived once the post goes through. Facebook uploads go direct — no public URL needed.

Your photo inbox          MCP server               Meta Graph API
  data/images/    →   stage → publish    →   Instagram / Facebook Page
                      ↓ on success
                  data/posted/YYYY-MM-DD/

Setup

See SETUP.md for the full step-by-step guide (Meta App creation, token generation, .env configuration, Docker Compose, reverse proxy).

Quick summary:

  1. Create a Meta App (type: Business) and add Facebook Login for Business + Instagram Graph API.
  2. Generate a long-lived User Access Token with the scopes below.
  3. Copy .env.example → .env and fill in your token, Page ID, and IG User ID.
  4. docker compose up -d --build
  5. Register the server with your MCP client (Claude Code or Claude Desktop).

Required token scopes

Scope Required for
pages_show_list Everything — used to derive the Page Access Token
pages_read_engagement Analytics
pages_manage_posts FB Page publishing
instagram_basic IG account info
instagram_content_publish IG publishing
publish_to_groups FB Group cross-posting (optional)

Running

Docker Compose (recommended)

cp .env.example .env
# edit .env

docker compose up -d --build

Two containers start:

  • instagram-mcp — MCP server on MCP_PORT (default 3224)
  • instagram-mcp-files — nginx sidecar on FILE_SERVER_PORT (default 3223) for image staging

Plain Python

cp .env.example .env
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python server.py

Connecting an MCP client

Claude Code

claude mcp add instagram -- docker run --rm -i \
  --env-file /opt/social/.env \
  instagram-mcp:latest

Or in .mcp.json:

{
  "mcpServers": {
    "instagram": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "--env-file", "/opt/social/.env", "instagram-mcp:latest"]
    }
  }
}

Claude Desktop

Settings → Developer → Custom Connectors → Add:

http://<host>:3224/mcp

MCP transports

MCP_TRANSPORT Use when Client URL
streamable-http (default) Persistent container, Claude Desktop, LAN clients http://<host>:3224/mcp
sse Same, legacy transport http://<host>:3224/sse
stdio Claude Code spawns container per call stdio (no network)

No built-in auth — restrict at the network layer or put a TLS-terminating proxy with a bearer-token check in front if you expose beyond the LAN.


File layout

data/
├── images/          # drop photos and videos here before posting
├── public/          # transient: nginx serves staged files here
├── posted/          # archived after successful publish, by date
│   └── YYYY-MM-DD/
└── scheduler/       # APScheduler SQLite jobstore

Tool reference

Posting

Tool What it does
post_instagram_photo(image_url, caption, alt_text) IG feed photo from a public URL
post_facebook_photo(image_url, caption) FB Page photo from a public URL
post_instagram_local_photo(filename, caption, alt_text, also_story) IG feed photo from inbox; stages, posts, archives
post_facebook_local_photo(filename, caption, also_story, group_ids) FB Page photo from inbox; direct multipart upload
post_local_photo_dual(filename, caption, alt_text, also_story_ig, also_story_fb) Both platforms in one job
post_instagram_local_carousel(filenames, caption) IG carousel (2–10 photos)
post_facebook_local_carousel(filenames, caption) FB multi-photo post (2–10 photos)
post_local_carousel_dual(filenames, caption) Carousel to both platforms
post_instagram_reel(video_url, caption, share_to_feed) IG Reel from a public URL
post_instagram_local_reel(filename, caption, share_to_feed) IG Reel from inbox
post_facebook_video(video_url, caption) FB Page video from a public URL
post_facebook_local_video(filename, caption) FB Page video from inbox
post_facebook_local_reel(filename, description) FB Page Reel from inbox
post_local_reel_dual(filename, caption, share_to_feed) Reel to both platforms

Scheduling

Tool What it does
schedule_instagram_local_photo(filename, when, caption, also_story) Queue an IG photo post
schedule_facebook_local_photo(filename, when, caption, also_story) Queue a FB photo post
schedule_instagram_local_carousel(filenames, when, caption) Queue an IG carousel
schedule_facebook_local_carousel(filenames, when, caption) Queue a FB carousel
schedule_instagram_local_reel(filename, when, caption, share_to_feed) Queue an IG Reel
schedule_facebook_local_video(filename, when, caption) Queue a FB video post
schedule_facebook_local_reel(filename, when, description) Queue a FB Reel
list_scheduled_posts() Show pending jobs
cancel_scheduled_post(job_id) Remove a pending job

when accepts in 2h, in 1d, or an ISO timestamp (Europe/Berlin if naive).

Inbox

Tool What it does
list_pending_images() List postable photos in data/images/
list_pending_videos() List postable videos in data/images/
show_image(filename, max_side) Render an inbox image inline so Claude can see it

Analytics

Tool What it does
get_instagram_account_insights(metric, period, since_days) Account-level IG metrics (reach, engagement, followers)
get_instagram_post_insights(media_id, metric) Per-post IG metrics
get_facebook_page_insights(metric, period, since_days) Page-level FB metrics
get_facebook_post_insights(post_id, metric) Per-post FB metrics
top_performing_posts(platform, limit, top_n) Rank recent posts by engagement
list_recent_instagram_posts(limit) Raw IG media list
list_recent_facebook_posts(limit) Raw FB Page post list

Autopilot

Tool What it does
autopilot_plan(days_ahead, max_posts, slots_per_day, …) Analyse inbox, dedup, cluster into carousels, propose a schedule
autopilot_commit(plan) Validate and queue the filled-in plan

Utility

Tool What it does
check_token_validity() Inspect token scopes, type, and expiry

Meta API notes

  • Graph API version: v25.0 (latest stable as of 2026-02-18). Set via GRAPH_API_VERSION in .env.
  • IG rate limit: 50 posts per 24-hour rolling window. The server checks before each publish and refuses if the quota is full.
  • Container polling: IG requires a two-step create → publish flow with a status poll in between. Photos time out after 90 s; Reels after 600 s (both configurable in .env).
  • Token lifetime: Long-lived user tokens last ~60 days. Use check_token_validity to monitor, and re-exchange before expiry. See SETUP.md for the renewal curl command.
  • Errors: Meta errors are surfaced verbatim — code, error_subcode, message, fbtrace_id, and the user-facing message — rather than being swallowed.

Reverse proxy (Caddy)

The nginx sidecar speaks plain HTTP. If Caddy runs on a remote VPS and reaches this host over Tailscale/Headscale:

social.example.com {
    reverse_proxy <homelab-tailscale-name>:3223
}

Set PUBLIC_BASE_URL=https://social.example.com in .env.

推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。

官方
精选