Build on top of SyncShorts.
Two ways to integrate: a small REST API for posting and analytics, and a full MCP server for AI agents.
REST API
5 endpoints, key auth, 60 req/min/workspace. Full OpenAPI spec.
GET /api/v1/postsPOST /api/v1/postsGET /api/v1/posts/:idPOST /api/v1/mediaGET /api/v1/analytics
curl -H "Authorization: Bearer $SS_KEY" \ https://syncshorts.app/api/v1/postsCreate an API key
MCP server
4 tools. Streamable HTTP transport. Works with Claude, GPT, your own agents.
list_posts— paginated listcreate_post— schedule with per-platform targetsget_analytics— totals + by platformget_connected_platforms
{
"mcpServers": {
"syncshorts": {
"url": "https://syncshorts.app/api/mcp",
"headers": { "Authorization": "Bearer $SS_MCP_TOKEN" }
}
}
}Full MCP docs