SSyncShorts

MCP server

Streamable HTTP transport. Authenticate with a Bearer token from Settings → API & MCP. The server responds to JSON-RPC 2.0 overPOST /api/mcp.

list_posts

Arguments

{
  "limit": 25,
  "status": "scheduled",
  "platform": "tiktok"
}

Response

{
  "content": [{ "type": "text", "text": "[{...}]" }]
}

create_post

Arguments

{
  "caption": "When the meme writes itself.",
  "scheduled_at": "2026-09-01T15:00:00Z",
  "targets": [
    { "platform": "tiktok", "hashtags": ["fyp"] },
    { "platform": "instagram_reels" }
  ]
}

Response

{
  "content": [{ "type": "text", "text": "{\"id\": \"...\", \"targets\": 2}" }]
}

get_analytics

Arguments

{}

Response

{
  "content": [{ "type": "text", "text": "{\"totals\": {...}, \"byPlatform\": {...}}" }]
}

get_connected_platforms

Arguments

{}

Response

{
  "content": [{ "type": "text", "text": "[{...}]" }]
}
Create an MCP tokenREST docs