socialync-mcp
Socialync
Documentation
Socialync MCP Server
Official documentation, registry manifest, and Cursor plugin for the Socialync hosted MCP server. Socialync is a cross-posting and scheduling tool for creators: upload once, publish to TikTok, Instagram, YouTube, Facebook, X, LinkedIn, Threads, and Bluesky.
This MCP server lets Claude, ChatGPT, Cursor, Grok Bot, and any MCP-compatible AI agent draft, schedule, and publish social media posts through your own OAuth-authorized Socialync account, with human-in-the-loop approval built into the workflow.
Every platform integration runs on the official platform API. No browser automation, no scraping, no unofficial endpoints. Your agent cannot get your account restricted on our behalf.
Duplicate protection means a retry can never publish twice, and failed posts are retried automatically. Both matter when an agent is doing the posting.
> Note: Socialync's server is hosted (remote) and closed source. This repository contains the documentation, the MCP Registry manifest, and the Cursor plugin files only. There is nothing to install or run from here.
Endpoint
https://mcp.socialync.io/mcpTransport: Streamable HTTP. Discovery document (tools, platforms, auth, limits, as JSON): https://mcp.socialync.io/.well-known/mcp
MCP and API access are on the free plan. $0, no credit card, 5 posts a month across all 8 platforms. Your agent can connect and publish without anyone reaching for a card. Paid plans start at $20/month for unlimited posts and 5 connected accounts (Starter $20, Creator $30 for 10 accounts, Studio $60 for 25, Agency $99 for 100). Plans and pricing.
Limits worth knowing: 1 API key per brand, and 10 AI-created posts per day per brand on paid plans (5 on free).
Authentication, two ways
A) OAuth 2.0 (preferred). Add the URL with no headers. Your client registers itself (dynamic client registration, PKCE, no client secret), opens a browser, and you sign in with your Socialync account and choose which brands the agent may manage. This is what Claude.ai, Claude Code, Cursor, and ChatGPT do on their own.
B) Bearer API key. For clients that cannot complete a browser OAuth flow (Grok Bot, headless agents, hand-edited config files). Generate a key at https://www.socialync.io/api-keys and send `Authorization: Bearer `. One key per brand, included on every plan. Never commit the key.
OAuth callbacks known to work end to end (any https redirect URI plus http://localhost and http://127.0.0.1 on any port is accepted):
- https://www.cursor.com/agents/mcp/oauth/callback
- http://localhost:8787/callback
- https://claude.ai/api/mcp/auth_callback
- http://localhost/callback
- http://127.0.0.1/callback
Connect
Claude (claude.ai): Settings, then Connectors, then "Add custom connector", and paste the endpoint URL above. Full walkthrough: Socialync MCP connector guide.
Claude Code:
claude mcp add --transport http socialync https://mcp.socialync.io/mcpCursor / Grok Bot (OAuth, url only):
{
"mcpServers": {
"socialync": {
"url": "https://mcp.socialync.io/mcp"
}
}
}Grok Bot or any client that cannot complete OAuth (Bearer key):
{
"mcpServers": {
"socialync": {
"url": "https://mcp.socialync.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_SOCIALYNC_API_KEY"
}
}
}
}> Grok Bot runs OAuth from Cursor's cloud, not your machine. The same URL can work in the Cursor IDE and fail in Grok Bot. Test in Grok Bot under Settings, then Plugins, not only in the IDE. If OAuth never starts or you see "fetch failed", use the Bearer key form.
OpenClaw:
openclaw mcp add socialync --url https://mcp.socialync.io/mcp --transport streamable-http
openclaw mcp login socialyncOther MCP clients (generic config):
{
"mcpServers": {
"socialync": {
"type": "streamable-http",
"url": "https://mcp.socialync.io/mcp"
}
}
}Claude Code plugin
This repository is also a Claude Code plugin: `.claude-plugin/plugin.json` is the manifest, `.mcp.json` adds the hosted server with no secrets, and the same three skills under `skills/` load. It passes `claude plugin validate .`. Setup notes, including how sign-in works: SETUP.md.
Once it is listed in the Claude plugin directory, install with `claude plugin install socialync`. Until then, or to skip the plugin, add the server directly (see Claude Code under Connect above); the skills are optional guidance, the server is the product.
Cursor and Grok Bot plugin
This repository is also the Cursor plugin (`.cursor-plugin/plugin.json`, `mcp.json`, `skills/`, `assets/logo.png`). Install from the Cursor Marketplace (search "Socialync") once listed, or add the MCP URL directly as above. Skills in `skills/` tell the agent when to draft, schedule, repurpose, or inspect the queue. Submission checklist: MARKETPLACE-SUBMIT.md.
Tools
Twenty-two tools. The same list is published at https://www.socialync.io/.well-known/mcp.
| Tool | What it does |
|---|---|
| `list_profiles` | List your Socialync brand profiles (call first; every write takes a `profileId`) |
| `list_connections` | Show which social accounts are connected and healthy |
| `list_audiences` | List saved audiences a post can target |
| `list_media` | Browse media already in Socialync, with the `mediaId` used to attach video |
| `create_media_upload` / `finalize_media_upload` | Upload images or a generated video |
| `check_quota` | Plan, remaining posts, per-platform daily caps, scheduling window |
| `validate_post` | Read-only preflight: caption length, links, media, aspect ratio, video duration, connection health |
| `create_post_draft` | Draft a text or image post (you approve in the app) |
| `schedule_post_draft` | Draft a post for a future time, text, image, or video (you approve in the app) |
| `get_draft_status` | Check where a draft is in the pipeline |
| `approve_draft` | Publish a pending draft after you confirm in chat |
| `publish_now` | Publish a text or image post immediately, after you confirm in chat |
| `publish_scheduled` | Schedule a post directly, including video to TikTok and YouTube, after you confirm in chat |
| `create_x_article_draft` / `publish_x_article_now` | Long-form X Articles (X Premium account required) |
| `get_scheduled_posts` | List upcoming scheduled posts |
| `delete_scheduled_post` | Cancel a scheduled post |
| `get_post_history` | Review published post history and status |
| `get_top_posts` | Surface your best-performing content |
| `get_analytics` | Pull follower and engagement analytics |
| `generate_content` | Generate platform-native captions with AI (paid plans) |
Text and image posts publish immediately to Instagram, Facebook, X, LinkedIn, Threads, and Bluesky. Video posts, including TikTok and YouTube (title required), go out as scheduled posts using media hosted in your Socialync library or a public video URL. A raw video file cannot be pasted into a chat; upload it in Socialync first.
Full reference, including recommended call order, per-platform limits, and error handling: docs/tools.md.
How the human stays in the loop
The intended workflow is validate first, draft second, publish last. Agents create drafts with `create_post_draft` or `schedule_post_draft`; nothing reaches a social network until the draft is approved in the app, or until you confirm in chat and the agent calls `approve_draft`, `publish_now`, or `publish_scheduled`. Posts go out through OAuth connections you authorized in Socialync and can be revoked at any time from your account settings. AI assistants help you draft, schedule, and publish; they do not operate accounts you have not connected and approved, and there is no unattended autonomous posting mode.
Agent skill
An OpenClaw skill wrapping this server is published on ClawHub:
openclaw skills install @jackvitick/social-media-schedulerLinks
- Website: socialync.io
- MCP feature overview: socialync.io/features/mcp
- Connector setup guide: socialync.io/mcp-connector-guide
- Discovery document: socialync.io/.well-known/mcp
- Official MCP Registry: `io.github.JackVitick/socialync`
- Terms of Service: socialync.io/terms-of-service
- Developer Agreement (API and MCP): socialync.io/developer-terms
- Privacy Policy: socialync.io/privacy-policy
Support
Questions or issues: open an issue here or email support@socialync.io.
Follow Socialync
- X: https://x.com/Socialync_io
- Instagram: https://www.instagram.com/socialync.io/
- TikTok: https://www.tiktok.com/@socialync.io
- YouTube: https://www.youtube.com/@Socialync-io
- LinkedIn: https://www.linkedin.com/company/socialync
- Threads: https://www.threads.com/@socialync.io
- Bluesky: https://bsky.app/profile/socialync.bsky.social
Frequently asked questions
What is socialync-mcp?
socialync-mcp is Socialync
How do I install socialync-mcp?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is socialync-mcp open source?
Yes — it is hosted on GitHub at https://github.com/JackVitick/socialync-mcp.
Related MCP tools
Model Context Protocol Servers
Pre-indexed code knowledge graph, auto syncs on code changes, for Claude Code, Codex, Gemini, Cursor, OpenCode, AntiGravity, Kiro, CoPilot, and Hermes Agent — fewer tokens, fewer tool calls, 100% local
an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM
The easy-to-use open source Business Intelligence and Embedded Analytics tool that lets everyone work with data :bar_chart:
The Open-Source Multimodal AI Agent Stack: Connecting Cutting-Edge AI Models and Agent Infra
Cognee is the open-source AI memory platform for agents. Give your AI agents persistent long-term memory across sessions with a self-hosted knowledge graph engine.
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP