_ registry / mcp http-sse · checked 1h ago

socialclaw

https://getsocialclaw.com

Registry code: 96d8b26ce734d1b7

api record

SocialClaw publishes social media posts through connected workspace accounts on X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest. Authenticate with `Authorization: Bearer <workspace API key>` from https://getsocialclaw.com/dashboard. Typical flow: list_accounts -> account_capabilities -> (list_assets to reuse an already-uploaded file, or upload_asset for a new one) -> validate_schedule -> apply_schedule -> run_status. To post media the user uploaded in the dashboard, call list_assets and use an asset's publicUrl as media_link.

endpoint
https://getsocialclaw.com/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
112ms

last good check

priced tools
0

of 32 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 32 tools
32 auth-required 32 of 32 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • get_instagram_account_insights auth-required never probed

    Get an Instagram account's insight trend (a daily time series, e.g. reach) over the last N days.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account"
      ],
      "properties": {
        "days": {
          "type": "number",
          "description": "Window in days (2-30, default 14)."
        },
        "metric": {
          "type": "string",
          "description": "Account metric, default reach (e.g. reach, profile_views, accounts_engaged)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        }
      }
    }
    arguments 20 lines
  • react_instagram_message auth-required never probed

    React to a received Instagram direct message (e.g. love).

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "conversationId",
        "messageId",
        "recipientId"
      ],
      "properties": {
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "reaction": {
          "type": "string",
          "description": "Reaction name, default love."
        },
        "messageId": {
          "type": "string"
        },
        "recipientId": {
          "type": "string",
          "description": "The other participant's Instagram-scoped user id (IGSID)."
        },
        "conversationId": {
          "type": "string"
        }
      }
    }
    arguments 29 lines
  • upload_asset auth-required never probed

    Upload media (image or video) to SocialClaw hosted storage. Provide either sourceUrl (a public URL the server downloads) or contentBase64. Returns an asset id and a public URL usable as media_link in schedules.

    mcp-tool

    {
      "type": "object",
      "required": [
        "filename"
      ],
      "properties": {
        "filename": {
          "type": "string",
          "description": "Filename including extension, e.g. launch.png."
        },
        "sourceUrl": {
          "type": "string",
          "description": "Public URL to download the media from."
        },
        "contentBase64": {
          "type": "string",
          "description": "Base64-encoded file content (alternative to sourceUrl)."
        }
      }
    }
    arguments 20 lines
  • validate_schedule auth-required never probed

    Validate a schedule document against provider rules, media limits, account state, and publish times WITHOUT creating any posts. Always run this before apply_schedule.

    mcp-tool

    {
      "type": "object",
      "required": [
        "schedule"
      ],
      "properties": {
        "schedule": {
          "type": "object",
          "description": "SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok inbox mode: settings: { tiktokPostMode: \"draft\" } sends the media to TikTok's inbox notification flow instead of publishing, and the creator finishes the post inside the TikTok app.",
          "additionalProperties": true
        }
      }
    }
    arguments 13 lines
  • preview_campaign auth-required never probed

    Preview how a campaign schedule document expands into concrete posts and steps without creating anything.

    mcp-tool

    {
      "type": "object",
      "required": [
        "schedule"
      ],
      "properties": {
        "schedule": {
          "type": "object",
          "description": "SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok inbox mode: settings: { tiktokPostMode: \"draft\" } sends the media to TikTok's inbox notification flow instead of publishing, and the creator finishes the post inside the TikTok app.",
          "additionalProperties": true
        }
      }
    }
    arguments 13 lines
  • reply_instagram_comment auth-required never probed

    Reply to an Instagram comment on the user's media.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "commentId",
        "message"
      ],
      "properties": {
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "message": {
          "type": "string",
          "description": "The reply text."
        },
        "commentId": {
          "type": "string"
        }
      }
    }
    arguments 21 lines
  • list_instagram_conversations auth-required never probed

    List the Instagram direct-message conversations for an account, most recent first. Each conversation includes `counterpart` (the other person's {id, username}) — use its id as the recipientId when replying; `participants` also lists the account itself.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account"
      ],
      "properties": {
        "after": {
          "type": "string",
          "description": "Pagination cursor from a previous response."
        },
        "limit": {
          "type": "number",
          "description": "Max conversations (default 25, capped at 100)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        }
      }
    }
    arguments 20 lines
  • get_instagram_messages auth-required never probed

    Read the messages in an Instagram direct-message conversation.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "conversationId"
      ],
      "properties": {
        "after": {
          "type": "string",
          "description": "Pagination cursor from a previous response."
        },
        "limit": {
          "type": "number",
          "description": "Max messages (default 25, capped at 100)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "conversationId": {
          "type": "string",
          "description": "Conversation id from list_instagram_conversations."
        }
      }
    }
    arguments 25 lines
  • connect_account auth-required never probed

    Start connecting a new social account. For OAuth providers this returns an authorizeUrl the user must open in a browser. Telegram requires botToken and chatId; Discord requires webhookUrl.

    mcp-tool

    {
      "type": "object",
      "required": [
        "provider"
      ],
      "properties": {
        "chatId": {
          "type": "string",
          "description": "Telegram chat target, e.g. @yourchannel (telegram only)."
        },
        "botToken": {
          "type": "string",
          "description": "Telegram bot token (telegram only)."
        },
        "provider": {
          "type": "string",
          "description": "Provider to connect."
        },
        "webhookUrl": {
          "type": "string",
          "description": "Discord channel webhook URL (discord only)."
        }
      }
    }
    arguments 24 lines
  • delete_instagram_comment auth-required never probed

    Permanently delete an Instagram comment on the user's media. Prefer hide_instagram_comment when unsure.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "commentId"
      ],
      "properties": {
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "commentId": {
          "type": "string"
        }
      }
    }
    arguments 16 lines
  • apply_schedule auth-required never probed

    Create a publishing run from a schedule document. Posts are scheduled or published through connected accounts. Send an idempotencyKey so retries do not create duplicate runs.

    mcp-tool

    {
      "type": "object",
      "required": [
        "schedule"
      ],
      "properties": {
        "schedule": {
          "type": "object",
          "description": "SocialClaw schedule document. Minimal shape: { timezone, posts: [{ account, name, description, publish_at, media_link? }] }. Campaign documents use { timezone, campaigns: [...] }. Per-post provider settings go in settings, e.g. TikTok inbox mode: settings: { tiktokPostMode: \"draft\" } sends the media to TikTok's inbox notification flow instead of publishing, and the creator finishes the post inside the TikTok app.",
          "additionalProperties": true
        },
        "idempotencyKey": {
          "type": "string",
          "description": "Stable key to deduplicate retries."
        }
      }
    }
    arguments 17 lines
  • publish_draft auth-required never probed

    Publish a previously created draft run, optionally at a given ISO-8601 start time.

    mcp-tool

    {
      "type": "object",
      "required": [
        "runId"
      ],
      "properties": {
        "runId": {
          "type": "string",
          "description": "Draft run id."
        },
        "startAt": {
          "type": "string",
          "description": "Optional ISO-8601 publish start time."
        }
      }
    }
    arguments 16 lines
  • list_posts auth-required never probed

    List posts in the workspace with optional filters.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Maximum posts to return. Defaults to 20 and is capped at 50."
        },
        "runId": {
          "type": "string"
        },
        "offset": {
          "type": "number",
          "description": "Offset for paging through results."
        },
        "status": {
          "type": "string",
          "description": "e.g. scheduled, published, action_required, failed, canceled."
        },
        "account": {
          "type": "string",
          "description": "Account handle filter."
        },
        "provider": {
          "type": "string"
        },
        "campaignId": {
          "type": "string"
        }
      }
    }
    arguments 30 lines
  • workspace_usage auth-required never probed

    Get workspace usage counters and plan entitlement consumption.

    mcp-tool

    {
      "type": "object",
      "properties": {}
    }
    arguments 4 lines
  • list_accounts auth-required 1h ago

    List connected social accounts in the SocialClaw workspace. Optionally filter by provider (x, facebook, instagram_business, instagram, threads, linkedin, linkedin_page, pinterest, tiktok, telegram, discord, youtube, reddit, wordpress).

    mcp-tool

    {
      "type": "object",
      "properties": {
        "provider": {
          "type": "string",
          "description": "Optional provider filter."
        }
      }
    }
    arguments 9 lines
  • list_instagram_mentions auth-required 1h ago

    List recent @mentions of the workspace's Instagram accounts (captured from Instagram mention webhooks).

    mcp-tool

    {
      "type": "object",
      "properties": {
        "limit": {
          "type": "number",
          "description": "Max mentions (default 30, capped at 100)."
        }
      }
    }
    arguments 9 lines
  • account_capabilities auth-required never probed

    Get publish capabilities and provider rules for connected accounts: what media is allowed, text limits, and whether publishing is currently possible. Pass accountId for one account, or provider to filter, or neither for all.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "provider": {
          "type": "string",
          "description": "Optional provider filter."
        },
        "accountId": {
          "type": "string",
          "description": "Optional account id."
        }
      }
    }
    arguments 13 lines
  • get_instagram_comments auth-required never probed

    Read the comments (and replies) on an Instagram post. Use list_instagram_media first to get a mediaId.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "mediaId"
      ],
      "properties": {
        "after": {
          "type": "string",
          "description": "Pagination cursor from a previous response."
        },
        "limit": {
          "type": "number",
          "description": "Max comments to return (default 25, capped at 100)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "mediaId": {
          "type": "string",
          "description": "The IG media id from list_instagram_media."
        }
      }
    }
    arguments 25 lines
  • list_assets auth-required never probed

    List media (images/videos) the user has uploaded to their SocialClaw library, newest first. Each asset includes a publicUrl usable directly as media_link in validate_schedule/apply_schedule. Use this to find a previously uploaded file (e.g. from the dashboard) to post. Optionally filter by kind (image/video), mime, or a text query over filename/id.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "kind": {
          "enum": [
            "image",
            "video"
          ],
          "type": "string",
          "description": "Filter by media kind: image or video."
        },
        "mime": {
          "type": "string",
          "description": "Optional mime prefix filter, e.g. video/mp4."
        },
        "sort": {
          "enum": [
            "created_desc",
            "created_asc"
          ],
          "type": "string",
          "description": "created_desc (default, newest first) or created_asc."
        },
        "limit": {
          "type": "number",
          "description": "Maximum assets to return. Defaults to 24, capped at 48."
        },
        "query": {
          "type": "string",
          "description": "Optional text match over filename, id, kind, mime, or url."
        }
      }
    }
    arguments 33 lines
  • get_post auth-required never probed

    Get one post including its delivery state and provider identifiers.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string"
        }
      }
    }
    arguments 11 lines
  • post_attempts auth-required never probed

    List publish attempts for a post, including provider errors. Use this to debug failed posts.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string"
        }
      }
    }
    arguments 11 lines
  • get_instagram_profile auth-required never probed

    Get an Instagram account's profile stats: followers, follows, media count, bio.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account"
      ],
      "properties": {
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        }
      }
    }
    arguments 12 lines
  • get_instagram_media_insights auth-required never probed

    Get analytics for one Instagram post (reach, likes, comments, saved, shares, views). Use list_instagram_media for the mediaId.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "mediaId"
      ],
      "properties": {
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "mediaId": {
          "type": "string"
        },
        "mediaProductType": {
          "type": "string",
          "description": "Optional: FEED, REELS, or STORY — refines which metrics are requested."
        }
      }
    }
    arguments 20 lines
  • retry_post auth-required never probed

    Retry a failed post.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string"
        }
      }
    }
    arguments 11 lines
  • cancel_post auth-required never probed

    Cancel a scheduled post before it publishes.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string"
        }
      }
    }
    arguments 11 lines
  • run_status auth-required never probed

    Get the status summary of a publishing run and its posts.

    mcp-tool

    {
      "type": "object",
      "required": [
        "runId"
      ],
      "properties": {
        "runId": {
          "type": "string"
        }
      }
    }
    arguments 11 lines
  • get_analytics auth-required never probed

    Get analytics snapshots for a post, an account, or a run. scope must be post, account, or run; id is the matching identifier.

    mcp-tool

    {
      "type": "object",
      "required": [
        "scope",
        "id"
      ],
      "properties": {
        "id": {
          "type": "string"
        },
        "scope": {
          "enum": [
            "post",
            "account",
            "run"
          ],
          "type": "string"
        },
        "window": {
          "type": "string",
          "description": "Optional analytics window, e.g. 7d."
        }
      }
    }
    arguments 24 lines
  • refresh_analytics auth-required never probed

    Fetch fresh analytics for a published post from the provider and store a new snapshot, then return it. Supported providers: Instagram, TikTok, YouTube, Reddit, X, Pinterest, Snapchat (others return an unsupported snapshot). Call this before get_analytics when you need current numbers rather than the last stored snapshot.

    mcp-tool

    {
      "type": "object",
      "required": [
        "postId"
      ],
      "properties": {
        "postId": {
          "type": "string",
          "description": "The published post id to refresh."
        },
        "window": {
          "type": "string",
          "description": "Optional analytics window, e.g. 7d (default lifetime)."
        }
      }
    }
    arguments 16 lines
  • list_instagram_media auth-required never probed

    List an Instagram account's recent posts (caption, permalink, timestamp, comment count) so you can find one to read or moderate comments on. account is the connected-account id or handle.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account"
      ],
      "properties": {
        "after": {
          "type": "string",
          "description": "Pagination cursor from a previous response."
        },
        "limit": {
          "type": "number",
          "description": "Max media to return (default 25, capped at 100)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        }
      }
    }
    arguments 20 lines
  • hide_instagram_comment auth-required never probed

    Hide or unhide an Instagram comment on the user's media. Set hidden=false to unhide.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "commentId"
      ],
      "properties": {
        "hidden": {
          "type": "boolean",
          "description": "true to hide (default), false to unhide."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "commentId": {
          "type": "string"
        }
      }
    }
    arguments 20 lines
  • send_instagram_message auth-required never probed

    Send an Instagram direct message — a text reply, or an image/video attachment via attachment_url. Only allowed within 24 hours of the recipient's last message unless a message tag (e.g. HUMAN_AGENT) is supplied.

    mcp-tool

    {
      "type": "object",
      "required": [
        "account",
        "conversationId",
        "recipientId"
      ],
      "properties": {
        "tag": {
          "type": "string",
          "description": "Optional message tag, e.g. HUMAN_AGENT, to reply outside the 24h window."
        },
        "text": {
          "type": "string",
          "description": "Message body (omit when sending an attachment)."
        },
        "account": {
          "type": "string",
          "description": "Instagram connected-account id or handle."
        },
        "recipientId": {
          "type": "string",
          "description": "The recipient's Instagram-scoped user id (IGSID)."
        },
        "attachment_url": {
          "type": "string",
          "description": "Public URL of an image/video to send as an attachment."
        },
        "conversationId": {
          "type": "string",
          "description": "Conversation id (for routing/storage)."
        },
        "attachment_type": {
          "enum": [
            "image",
            "video",
            "audio"
          ],
          "type": "string",
          "description": "Attachment type: image (default), video, or audio."
        }
      }
    }
    arguments 43 lines
  • workspace_health auth-required never probed

    Get workspace health, including connection state across providers. Pass provider to check one provider's connections.

    mcp-tool

    {
      "type": "object",
      "properties": {
        "provider": {
          "type": "string",
          "description": "Optional provider to check connection health for."
        }
      }
    }
    arguments 9 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/96d8b26ce734d1b7/badge.svg)](https://brick.blue/agent/96d8b26ce734d1b7)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.