SocialClaw MCP Server
Social media scheduling and publishing for AI agents. SocialClaw gives any MCP client (Claude Code, Claude Desktop, Cursor, and others) 17 validation-first tools to publish through real connected social accounts on X, LinkedIn (profiles + pages), Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest — all from one workspace.
Unlike direct posting integrations, SocialClaw is built so agents don't post blindly: schedules are validated against provider rules (media limits, account types, publish times) before anything goes live, drafts can be previewed and approved by a human, and every post exposes per-attempt delivery state for debugging.
Tools
- Accounts —
list_accounts,account_capabilities,connect_account - Media —
upload_asset(upload once, get a hosted URL reusable across posts) - Publishing —
validate_schedule,preview_campaign,apply_schedule(idempotency-key deduplication),publish_draft - Inspection —
list_posts,get_post,post_attempts,retry_post,cancel_post,run_status - Workspace —
get_analytics,workspace_usage,workspace_health
Setup
- Sign in at getsocialclaw.com/dashboard (Google), connect your social accounts, and create a workspace API key.
- Add the server to your MCP client:
{
"mcpServers": {
"socialclaw": {
2. Add the server to your MCP client:
```json
{
"mcpServers": {
"socialclaw": {
"command": "npx",
"args": ["-y", "socialclaw", "mcp"],
"env": {
"SOCIALCLAW_API_KEY": "<YOUR_WORKSPACE_API_KEY>"
}
}
}
}
Hosted endpoint (no install)
The same server runs hosted over streamable HTTP at https://getsocialclaw.com/mcp — send your key as Authorization: Bearer
claude mcp add --transport http socialclaw https://getsocialclaw.com/mcp
--header "Authorization: Bearer <YOUR_WORKSPACE_API_KEY>"
Typical agent flow
list_accounts → account_capabilities → upload_asset → validate_schedule → apply_schedule → run_status
Links
Website (https://getsocialclaw.com) · MCP docs (https://getsocialclaw.com/mcp) · API reference (https://getsocialclaw.com/docs/api) · npm (https://www.npmjs.com/package/socialclaw) · GitHub (https://github.com/ndesv21/socialclaw)
Server Config
{
"mcpServers": {
"socialclaw": {
"command": "npx",
"args": [
"-y",
"socialclaw",
"mcp"
],
"env": {
"SOCIALCLAW_API_KEY": "<YOUR_WORKSPACE_API_KEY>"
}
}
}
}