[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-facebook-automation":3,"mdc-55if7l-key":50,"related-org-composio-facebook-automation":1831,"related-repo-composio-facebook-automation":1977},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":45,"sourceUrl":48,"mdContent":49},"facebook-automation","Facebook Automation","automate Facebook Page management via Composio","Automate Facebook Page management including post creation, scheduling, video uploads, Messenger conversations, and audience engagement via Composio",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[14,16,19,22],{"name":10,"slug":9,"type":15},"tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},"MCP","mcp",{"name":23,"slug":24,"type":15},"Social Media","social-media",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-15T05:56:12.569586",null,7603,[31,32,33,18,34,35,36,9,37,38,39,21,40,41,42,43,44],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":26,"stars":25,"forks":29,"topics":46,"description":47},[31,32,33,18,34,35,36,9,37,38,39,21,40,41,42,43,44],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Fcomposio-skills\u002Ffacebook-automation","---\nname: Facebook Automation\ndescription: \"Automate Facebook Page management including post creation, scheduling, video uploads, Messenger conversations, and audience engagement via Composio\"\nrequires:\n  mcp:\n    - rube\n---\n\n# Facebook Automation\n\nAutomate Facebook Page operations -- create and schedule posts, upload videos, manage Messenger conversations, retrieve page insights, and handle scheduled content -- all orchestrated through the Composio MCP integration.\n\n**Toolkit docs:** [composio.dev\u002Ftoolkits\u002Ffacebook](https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Ffacebook)\n\n---\n\n## Setup\n\n1. Connect your Facebook account through the Composio MCP server at `https:\u002F\u002Frube.app\u002Fmcp`\n2. The agent will prompt you with an authentication link if no active connection exists\n3. Once connected, all `FACEBOOK_*` tools become available for execution\n4. **Note:** This toolkit supports Facebook Pages only, not personal Facebook accounts\n\n---\n\n## Core Workflows\n\n### 1. Discover Managed Pages\nList all Facebook Pages you manage to get page IDs and access tokens for subsequent operations.\n\n**Tool:** `FACEBOOK_LIST_MANAGED_PAGES`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `fields` | string | No | Comma-separated fields (default: `id,name,access_token,category,tasks,about,link,picture`) |\n| `limit` | integer | No | Max pages per request (default: 25) |\n| `user_id` | string | No | User ID (default: `me`) |\n\n**Always run this first** to cache `page_id` values. Avoid repeating discovery calls -- cache the results.\n\n---\n\n### 2. Create & Schedule Posts\nPublish or schedule text posts with optional links on a Facebook Page.\n\n**Tool:** `FACEBOOK_CREATE_POST`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `page_id` | string | Yes | Numeric Page ID from managed pages |\n| `message` | string | Yes | Text content of the post |\n| `published` | boolean | No | `true` to publish immediately, `false` for draft\u002Fscheduled (default: true) |\n| `scheduled_publish_time` | integer | No | Unix UTC timestamp; must be at least 10 minutes in the future |\n| `link` | string | No | URL to include in the post |\n| `targeting` | object | No | Audience targeting specifications |\n\n**When scheduling:** Set `published=false` and provide `scheduled_publish_time` as a Unix UTC timestamp.\n\n---\n\n### 3. Create & Schedule Video Posts\nUpload and schedule video content on a Facebook Page.\n\n**Tool:** `FACEBOOK_CREATE_VIDEO_POST`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `page_id` | string | Yes | Numeric Page ID |\n| `file_url` | string | Conditional | URL of the video file (provide `file_url` or `video`) |\n| `video` | object | Conditional | Local file upload with `name`, `mimetype`, `s3key` |\n| `title` | string | No | Video title |\n| `description` | string | No | Video description |\n| `published` | boolean | No | Publish immediately (default: true) |\n| `scheduled_publish_time` | integer | No | Unix timestamp for scheduled publishing |\n\n---\n\n### 4. Manage Scheduled Posts\nReview, reschedule, update, or publish scheduled content.\n\n**Tools:**\n\n- **`FACEBOOK_GET_SCHEDULED_POSTS`** -- List scheduled\u002Funpublished posts for a page\n  - `page_id` (required), `fields`, `limit` (max 100)\n- **`FACEBOOK_RESCHEDULE_POST`** -- Change the scheduled publish time\n- **`FACEBOOK_UPDATE_POST`** -- Edit caption\u002Ftext on an existing post\n- **`FACEBOOK_PUBLISH_SCHEDULED_POST`** -- Publish a scheduled post immediately\n\n---\n\n### 5. Read Page Messenger Conversations\nRetrieve inbox conversations and message threads between users and your Page.\n\n**Tool:** `FACEBOOK_GET_PAGE_CONVERSATIONS`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `page_id` | string | Yes | The Facebook Page ID |\n| `fields` | string | No | Fields to return (default: `participants,updated_time,id`) |\n| `limit` | integer | No | Conversations to return, max 25 |\n\nThen retrieve full message threads:\n\n**Tool:** `FACEBOOK_GET_CONVERSATION_MESSAGES`\n\n| Parameter | Type | Required | Description |\n|-----------|------|----------|-------------|\n| `page_id` | string | Yes | Page ID that owns the conversation |\n| `conversation_id` | string | Yes | Conversation ID in `t_` format (e.g., `t_3638640842939952`) |\n| `fields` | string | No | Default: `id,created_time,from,to,message` |\n| `limit` | integer | No | Messages to return, max 25 |\n\n---\n\n### 6. Send Messages & Mark as Seen\nRespond to users via Messenger and mark messages as read.\n\n**Tools:**\n\n- **`FACEBOOK_SEND_MESSAGE`** -- Send a text message from the Page to a user via Messenger\n- **`FACEBOOK_MARK_MESSAGE_SEEN`** -- Mark a user's message as seen by the Page\n\n**Warning:** Both tools cause user-visible side effects. Only call after explicit confirmation.\n\n---\n\n## Known Pitfalls\n\n| Pitfall | Details |\n|---------|---------|\n| **Scheduling too close to now** | `FACEBOOK_CREATE_POST` with `scheduled_publish_time` less than ~10 minutes in the future returns HTTP 400 -- enforce a larger buffer for bulk runs |\n| **Unix UTC timestamps required** | `scheduled_publish_time` must be Unix UTC -- timezone conversion mistakes cause off-by-hours scheduling or validation failures |\n| **Cursor-based pagination** | `FACEBOOK_GET_SCHEDULED_POSTS` and `FACEBOOK_GET_PAGE_CONVERSATIONS` return subsets -- follow paging cursors to get complete data |\n| **Large conversation payloads** | Requesting embedded messages in conversations creates huge payloads -- use `FACEBOOK_GET_CONVERSATION_MESSAGES` for full threads instead |\n| **Video processing delays** | Uploaded videos may remain in processing state -- only schedule via `FACEBOOK_CREATE_VIDEO_POST` after the upload is usable |\n| **Cache page IDs** | Repeating `FACEBOOK_LIST_MANAGED_PAGES` calls adds latency -- cache `page_id` per workspace\u002Frun |\n| **Pages only** | This toolkit does not support personal Facebook accounts -- only Facebook Pages |\n| **Write operations need confirmation** | `FACEBOOK_SEND_MESSAGE` and `FACEBOOK_MARK_MESSAGE_SEEN` cause user-visible side effects -- only call after explicit user confirmation |\n\n---\n\n## Quick Reference\n\n| Tool Slug | Purpose |\n|-----------|---------|\n| `FACEBOOK_LIST_MANAGED_PAGES` | List Pages you manage with access tokens |\n| `FACEBOOK_GET_PAGE_DETAILS` | Get detailed info about a specific Page |\n| `FACEBOOK_CREATE_POST` | Create or schedule a text\u002Flink post |\n| `FACEBOOK_CREATE_VIDEO_POST` | Create or schedule a video post |\n| `FACEBOOK_GET_SCHEDULED_POSTS` | List scheduled\u002Funpublished posts |\n| `FACEBOOK_RESCHEDULE_POST` | Change scheduled publish time |\n| `FACEBOOK_UPDATE_POST` | Edit an existing post |\n| `FACEBOOK_PUBLISH_SCHEDULED_POST` | Publish a scheduled post immediately |\n| `FACEBOOK_UPLOAD_VIDEO` | Upload a video file to a Page |\n| `FACEBOOK_GET_PAGE_CONVERSATIONS` | List Messenger inbox conversations |\n| `FACEBOOK_GET_CONVERSATION_MESSAGES` | Retrieve messages from a conversation |\n| `FACEBOOK_SEND_MESSAGE` | Send a Messenger message from the Page |\n| `FACEBOOK_MARK_MESSAGE_SEEN` | Mark a message as seen |\n| `FACEBOOK_GET_PAGE_POSTS` | Retrieve posts from a Page feed |\n| `FACEBOOK_GET_USER_PAGES` | List Pages with tasks and tokens |\n\n---\n\n*Powered by [Composio](https:\u002F\u002Fcomposio.dev)*\n",{"data":51,"body":54},{"name":5,"description":7,"requires":52},{"mcp":53},[41],{"type":55,"children":56},"root",[57,64,70,90,94,101,146,149,155,162,167,182,313,331,334,340,345,359,553,578,581,587,592,606,841,844,850,855,863,949,952,958,963,977,1084,1089,1103,1249,1252,1258,1263,1270,1301,1311,1314,1320,1538,1541,1547,1813,1816],{"type":58,"tag":59,"props":60,"children":61},"element","h1",{"id":4},[62],{"type":63,"value":5},"text",{"type":58,"tag":65,"props":66,"children":67},"p",{},[68],{"type":63,"value":69},"Automate Facebook Page operations -- create and schedule posts, upload videos, manage Messenger conversations, retrieve page insights, and handle scheduled content -- all orchestrated through the Composio MCP integration.",{"type":58,"tag":65,"props":71,"children":72},{},[73,79,81],{"type":58,"tag":74,"props":75,"children":76},"strong",{},[77],{"type":63,"value":78},"Toolkit docs:",{"type":63,"value":80}," ",{"type":58,"tag":82,"props":83,"children":87},"a",{"href":84,"rel":85},"https:\u002F\u002Fcomposio.dev\u002Ftoolkits\u002Ffacebook",[86],"nofollow",[88],{"type":63,"value":89},"composio.dev\u002Ftoolkits\u002Ffacebook",{"type":58,"tag":91,"props":92,"children":93},"hr",{},[],{"type":58,"tag":95,"props":96,"children":98},"h2",{"id":97},"setup",[99],{"type":63,"value":100},"Setup",{"type":58,"tag":102,"props":103,"children":104},"ol",{},[105,118,123,136],{"type":58,"tag":106,"props":107,"children":108},"li",{},[109,111],{"type":63,"value":110},"Connect your Facebook account through the Composio MCP server at ",{"type":58,"tag":112,"props":113,"children":115},"code",{"className":114},[],[116],{"type":63,"value":117},"https:\u002F\u002Frube.app\u002Fmcp",{"type":58,"tag":106,"props":119,"children":120},{},[121],{"type":63,"value":122},"The agent will prompt you with an authentication link if no active connection exists",{"type":58,"tag":106,"props":124,"children":125},{},[126,128,134],{"type":63,"value":127},"Once connected, all ",{"type":58,"tag":112,"props":129,"children":131},{"className":130},[],[132],{"type":63,"value":133},"FACEBOOK_*",{"type":63,"value":135}," tools become available for execution",{"type":58,"tag":106,"props":137,"children":138},{},[139,144],{"type":58,"tag":74,"props":140,"children":141},{},[142],{"type":63,"value":143},"Note:",{"type":63,"value":145}," This toolkit supports Facebook Pages only, not personal Facebook accounts",{"type":58,"tag":91,"props":147,"children":148},{},[],{"type":58,"tag":95,"props":150,"children":152},{"id":151},"core-workflows",[153],{"type":63,"value":154},"Core Workflows",{"type":58,"tag":156,"props":157,"children":159},"h3",{"id":158},"_1-discover-managed-pages",[160],{"type":63,"value":161},"1. Discover Managed Pages",{"type":58,"tag":65,"props":163,"children":164},{},[165],{"type":63,"value":166},"List all Facebook Pages you manage to get page IDs and access tokens for subsequent operations.",{"type":58,"tag":65,"props":168,"children":169},{},[170,175,176],{"type":58,"tag":74,"props":171,"children":172},{},[173],{"type":63,"value":174},"Tool:",{"type":63,"value":80},{"type":58,"tag":112,"props":177,"children":179},{"className":178},[],[180],{"type":63,"value":181},"FACEBOOK_LIST_MANAGED_PAGES",{"type":58,"tag":183,"props":184,"children":185},"table",{},[186,215],{"type":58,"tag":187,"props":188,"children":189},"thead",{},[190],{"type":58,"tag":191,"props":192,"children":193},"tr",{},[194,200,205,210],{"type":58,"tag":195,"props":196,"children":197},"th",{},[198],{"type":63,"value":199},"Parameter",{"type":58,"tag":195,"props":201,"children":202},{},[203],{"type":63,"value":204},"Type",{"type":58,"tag":195,"props":206,"children":207},{},[208],{"type":63,"value":209},"Required",{"type":58,"tag":195,"props":211,"children":212},{},[213],{"type":63,"value":214},"Description",{"type":58,"tag":216,"props":217,"children":218},"tbody",{},[219,255,281],{"type":58,"tag":191,"props":220,"children":221},{},[222,232,237,242],{"type":58,"tag":223,"props":224,"children":225},"td",{},[226],{"type":58,"tag":112,"props":227,"children":229},{"className":228},[],[230],{"type":63,"value":231},"fields",{"type":58,"tag":223,"props":233,"children":234},{},[235],{"type":63,"value":236},"string",{"type":58,"tag":223,"props":238,"children":239},{},[240],{"type":63,"value":241},"No",{"type":58,"tag":223,"props":243,"children":244},{},[245,247,253],{"type":63,"value":246},"Comma-separated fields (default: ",{"type":58,"tag":112,"props":248,"children":250},{"className":249},[],[251],{"type":63,"value":252},"id,name,access_token,category,tasks,about,link,picture",{"type":63,"value":254},")",{"type":58,"tag":191,"props":256,"children":257},{},[258,267,272,276],{"type":58,"tag":223,"props":259,"children":260},{},[261],{"type":58,"tag":112,"props":262,"children":264},{"className":263},[],[265],{"type":63,"value":266},"limit",{"type":58,"tag":223,"props":268,"children":269},{},[270],{"type":63,"value":271},"integer",{"type":58,"tag":223,"props":273,"children":274},{},[275],{"type":63,"value":241},{"type":58,"tag":223,"props":277,"children":278},{},[279],{"type":63,"value":280},"Max pages per request (default: 25)",{"type":58,"tag":191,"props":282,"children":283},{},[284,293,297,301],{"type":58,"tag":223,"props":285,"children":286},{},[287],{"type":58,"tag":112,"props":288,"children":290},{"className":289},[],[291],{"type":63,"value":292},"user_id",{"type":58,"tag":223,"props":294,"children":295},{},[296],{"type":63,"value":236},{"type":58,"tag":223,"props":298,"children":299},{},[300],{"type":63,"value":241},{"type":58,"tag":223,"props":302,"children":303},{},[304,306,312],{"type":63,"value":305},"User ID (default: ",{"type":58,"tag":112,"props":307,"children":309},{"className":308},[],[310],{"type":63,"value":311},"me",{"type":63,"value":254},{"type":58,"tag":65,"props":314,"children":315},{},[316,321,323,329],{"type":58,"tag":74,"props":317,"children":318},{},[319],{"type":63,"value":320},"Always run this first",{"type":63,"value":322}," to cache ",{"type":58,"tag":112,"props":324,"children":326},{"className":325},[],[327],{"type":63,"value":328},"page_id",{"type":63,"value":330}," values. Avoid repeating discovery calls -- cache the results.",{"type":58,"tag":91,"props":332,"children":333},{},[],{"type":58,"tag":156,"props":335,"children":337},{"id":336},"_2-create-schedule-posts",[338],{"type":63,"value":339},"2. Create & Schedule Posts",{"type":58,"tag":65,"props":341,"children":342},{},[343],{"type":63,"value":344},"Publish or schedule text posts with optional links on a Facebook Page.",{"type":58,"tag":65,"props":346,"children":347},{},[348,352,353],{"type":58,"tag":74,"props":349,"children":350},{},[351],{"type":63,"value":174},{"type":63,"value":80},{"type":58,"tag":112,"props":354,"children":356},{"className":355},[],[357],{"type":63,"value":358},"FACEBOOK_CREATE_POST",{"type":58,"tag":183,"props":360,"children":361},{},[362,384],{"type":58,"tag":187,"props":363,"children":364},{},[365],{"type":58,"tag":191,"props":366,"children":367},{},[368,372,376,380],{"type":58,"tag":195,"props":369,"children":370},{},[371],{"type":63,"value":199},{"type":58,"tag":195,"props":373,"children":374},{},[375],{"type":63,"value":204},{"type":58,"tag":195,"props":377,"children":378},{},[379],{"type":63,"value":209},{"type":58,"tag":195,"props":381,"children":382},{},[383],{"type":63,"value":214},{"type":58,"tag":216,"props":385,"children":386},{},[387,412,437,477,502,527],{"type":58,"tag":191,"props":388,"children":389},{},[390,398,402,407],{"type":58,"tag":223,"props":391,"children":392},{},[393],{"type":58,"tag":112,"props":394,"children":396},{"className":395},[],[397],{"type":63,"value":328},{"type":58,"tag":223,"props":399,"children":400},{},[401],{"type":63,"value":236},{"type":58,"tag":223,"props":403,"children":404},{},[405],{"type":63,"value":406},"Yes",{"type":58,"tag":223,"props":408,"children":409},{},[410],{"type":63,"value":411},"Numeric Page ID from managed pages",{"type":58,"tag":191,"props":413,"children":414},{},[415,424,428,432],{"type":58,"tag":223,"props":416,"children":417},{},[418],{"type":58,"tag":112,"props":419,"children":421},{"className":420},[],[422],{"type":63,"value":423},"message",{"type":58,"tag":223,"props":425,"children":426},{},[427],{"type":63,"value":236},{"type":58,"tag":223,"props":429,"children":430},{},[431],{"type":63,"value":406},{"type":58,"tag":223,"props":433,"children":434},{},[435],{"type":63,"value":436},"Text content of the post",{"type":58,"tag":191,"props":438,"children":439},{},[440,449,454,458],{"type":58,"tag":223,"props":441,"children":442},{},[443],{"type":58,"tag":112,"props":444,"children":446},{"className":445},[],[447],{"type":63,"value":448},"published",{"type":58,"tag":223,"props":450,"children":451},{},[452],{"type":63,"value":453},"boolean",{"type":58,"tag":223,"props":455,"children":456},{},[457],{"type":63,"value":241},{"type":58,"tag":223,"props":459,"children":460},{},[461,467,469,475],{"type":58,"tag":112,"props":462,"children":464},{"className":463},[],[465],{"type":63,"value":466},"true",{"type":63,"value":468}," to publish immediately, ",{"type":58,"tag":112,"props":470,"children":472},{"className":471},[],[473],{"type":63,"value":474},"false",{"type":63,"value":476}," for draft\u002Fscheduled (default: true)",{"type":58,"tag":191,"props":478,"children":479},{},[480,489,493,497],{"type":58,"tag":223,"props":481,"children":482},{},[483],{"type":58,"tag":112,"props":484,"children":486},{"className":485},[],[487],{"type":63,"value":488},"scheduled_publish_time",{"type":58,"tag":223,"props":490,"children":491},{},[492],{"type":63,"value":271},{"type":58,"tag":223,"props":494,"children":495},{},[496],{"type":63,"value":241},{"type":58,"tag":223,"props":498,"children":499},{},[500],{"type":63,"value":501},"Unix UTC timestamp; must be at least 10 minutes in the future",{"type":58,"tag":191,"props":503,"children":504},{},[505,514,518,522],{"type":58,"tag":223,"props":506,"children":507},{},[508],{"type":58,"tag":112,"props":509,"children":511},{"className":510},[],[512],{"type":63,"value":513},"link",{"type":58,"tag":223,"props":515,"children":516},{},[517],{"type":63,"value":236},{"type":58,"tag":223,"props":519,"children":520},{},[521],{"type":63,"value":241},{"type":58,"tag":223,"props":523,"children":524},{},[525],{"type":63,"value":526},"URL to include in the post",{"type":58,"tag":191,"props":528,"children":529},{},[530,539,544,548],{"type":58,"tag":223,"props":531,"children":532},{},[533],{"type":58,"tag":112,"props":534,"children":536},{"className":535},[],[537],{"type":63,"value":538},"targeting",{"type":58,"tag":223,"props":540,"children":541},{},[542],{"type":63,"value":543},"object",{"type":58,"tag":223,"props":545,"children":546},{},[547],{"type":63,"value":241},{"type":58,"tag":223,"props":549,"children":550},{},[551],{"type":63,"value":552},"Audience targeting specifications",{"type":58,"tag":65,"props":554,"children":555},{},[556,561,563,569,571,576],{"type":58,"tag":74,"props":557,"children":558},{},[559],{"type":63,"value":560},"When scheduling:",{"type":63,"value":562}," Set ",{"type":58,"tag":112,"props":564,"children":566},{"className":565},[],[567],{"type":63,"value":568},"published=false",{"type":63,"value":570}," and provide ",{"type":58,"tag":112,"props":572,"children":574},{"className":573},[],[575],{"type":63,"value":488},{"type":63,"value":577}," as a Unix UTC timestamp.",{"type":58,"tag":91,"props":579,"children":580},{},[],{"type":58,"tag":156,"props":582,"children":584},{"id":583},"_3-create-schedule-video-posts",[585],{"type":63,"value":586},"3. Create & Schedule Video Posts",{"type":58,"tag":65,"props":588,"children":589},{},[590],{"type":63,"value":591},"Upload and schedule video content on a Facebook Page.",{"type":58,"tag":65,"props":593,"children":594},{},[595,599,600],{"type":58,"tag":74,"props":596,"children":597},{},[598],{"type":63,"value":174},{"type":63,"value":80},{"type":58,"tag":112,"props":601,"children":603},{"className":602},[],[604],{"type":63,"value":605},"FACEBOOK_CREATE_VIDEO_POST",{"type":58,"tag":183,"props":607,"children":608},{},[609,631],{"type":58,"tag":187,"props":610,"children":611},{},[612],{"type":58,"tag":191,"props":613,"children":614},{},[615,619,623,627],{"type":58,"tag":195,"props":616,"children":617},{},[618],{"type":63,"value":199},{"type":58,"tag":195,"props":620,"children":621},{},[622],{"type":63,"value":204},{"type":58,"tag":195,"props":624,"children":625},{},[626],{"type":63,"value":209},{"type":58,"tag":195,"props":628,"children":629},{},[630],{"type":63,"value":214},{"type":58,"tag":216,"props":632,"children":633},{},[634,658,698,743,768,793,817],{"type":58,"tag":191,"props":635,"children":636},{},[637,645,649,653],{"type":58,"tag":223,"props":638,"children":639},{},[640],{"type":58,"tag":112,"props":641,"children":643},{"className":642},[],[644],{"type":63,"value":328},{"type":58,"tag":223,"props":646,"children":647},{},[648],{"type":63,"value":236},{"type":58,"tag":223,"props":650,"children":651},{},[652],{"type":63,"value":406},{"type":58,"tag":223,"props":654,"children":655},{},[656],{"type":63,"value":657},"Numeric Page ID",{"type":58,"tag":191,"props":659,"children":660},{},[661,670,674,679],{"type":58,"tag":223,"props":662,"children":663},{},[664],{"type":58,"tag":112,"props":665,"children":667},{"className":666},[],[668],{"type":63,"value":669},"file_url",{"type":58,"tag":223,"props":671,"children":672},{},[673],{"type":63,"value":236},{"type":58,"tag":223,"props":675,"children":676},{},[677],{"type":63,"value":678},"Conditional",{"type":58,"tag":223,"props":680,"children":681},{},[682,684,689,691,697],{"type":63,"value":683},"URL of the video file (provide ",{"type":58,"tag":112,"props":685,"children":687},{"className":686},[],[688],{"type":63,"value":669},{"type":63,"value":690}," or ",{"type":58,"tag":112,"props":692,"children":694},{"className":693},[],[695],{"type":63,"value":696},"video",{"type":63,"value":254},{"type":58,"tag":191,"props":699,"children":700},{},[701,709,713,717],{"type":58,"tag":223,"props":702,"children":703},{},[704],{"type":58,"tag":112,"props":705,"children":707},{"className":706},[],[708],{"type":63,"value":696},{"type":58,"tag":223,"props":710,"children":711},{},[712],{"type":63,"value":543},{"type":58,"tag":223,"props":714,"children":715},{},[716],{"type":63,"value":678},{"type":58,"tag":223,"props":718,"children":719},{},[720,722,728,730,736,737],{"type":63,"value":721},"Local file upload with ",{"type":58,"tag":112,"props":723,"children":725},{"className":724},[],[726],{"type":63,"value":727},"name",{"type":63,"value":729},", ",{"type":58,"tag":112,"props":731,"children":733},{"className":732},[],[734],{"type":63,"value":735},"mimetype",{"type":63,"value":729},{"type":58,"tag":112,"props":738,"children":740},{"className":739},[],[741],{"type":63,"value":742},"s3key",{"type":58,"tag":191,"props":744,"children":745},{},[746,755,759,763],{"type":58,"tag":223,"props":747,"children":748},{},[749],{"type":58,"tag":112,"props":750,"children":752},{"className":751},[],[753],{"type":63,"value":754},"title",{"type":58,"tag":223,"props":756,"children":757},{},[758],{"type":63,"value":236},{"type":58,"tag":223,"props":760,"children":761},{},[762],{"type":63,"value":241},{"type":58,"tag":223,"props":764,"children":765},{},[766],{"type":63,"value":767},"Video title",{"type":58,"tag":191,"props":769,"children":770},{},[771,780,784,788],{"type":58,"tag":223,"props":772,"children":773},{},[774],{"type":58,"tag":112,"props":775,"children":777},{"className":776},[],[778],{"type":63,"value":779},"description",{"type":58,"tag":223,"props":781,"children":782},{},[783],{"type":63,"value":236},{"type":58,"tag":223,"props":785,"children":786},{},[787],{"type":63,"value":241},{"type":58,"tag":223,"props":789,"children":790},{},[791],{"type":63,"value":792},"Video description",{"type":58,"tag":191,"props":794,"children":795},{},[796,804,808,812],{"type":58,"tag":223,"props":797,"children":798},{},[799],{"type":58,"tag":112,"props":800,"children":802},{"className":801},[],[803],{"type":63,"value":448},{"type":58,"tag":223,"props":805,"children":806},{},[807],{"type":63,"value":453},{"type":58,"tag":223,"props":809,"children":810},{},[811],{"type":63,"value":241},{"type":58,"tag":223,"props":813,"children":814},{},[815],{"type":63,"value":816},"Publish immediately (default: true)",{"type":58,"tag":191,"props":818,"children":819},{},[820,828,832,836],{"type":58,"tag":223,"props":821,"children":822},{},[823],{"type":58,"tag":112,"props":824,"children":826},{"className":825},[],[827],{"type":63,"value":488},{"type":58,"tag":223,"props":829,"children":830},{},[831],{"type":63,"value":271},{"type":58,"tag":223,"props":833,"children":834},{},[835],{"type":63,"value":241},{"type":58,"tag":223,"props":837,"children":838},{},[839],{"type":63,"value":840},"Unix timestamp for scheduled publishing",{"type":58,"tag":91,"props":842,"children":843},{},[],{"type":58,"tag":156,"props":845,"children":847},{"id":846},"_4-manage-scheduled-posts",[848],{"type":63,"value":849},"4. Manage Scheduled Posts",{"type":58,"tag":65,"props":851,"children":852},{},[853],{"type":63,"value":854},"Review, reschedule, update, or publish scheduled content.",{"type":58,"tag":65,"props":856,"children":857},{},[858],{"type":58,"tag":74,"props":859,"children":860},{},[861],{"type":63,"value":862},"Tools:",{"type":58,"tag":864,"props":865,"children":866},"ul",{},[867,907,921,935],{"type":58,"tag":106,"props":868,"children":869},{},[870,879,881],{"type":58,"tag":74,"props":871,"children":872},{},[873],{"type":58,"tag":112,"props":874,"children":876},{"className":875},[],[877],{"type":63,"value":878},"FACEBOOK_GET_SCHEDULED_POSTS",{"type":63,"value":880}," -- List scheduled\u002Funpublished posts for a page\n",{"type":58,"tag":864,"props":882,"children":883},{},[884],{"type":58,"tag":106,"props":885,"children":886},{},[887,892,894,899,900,905],{"type":58,"tag":112,"props":888,"children":890},{"className":889},[],[891],{"type":63,"value":328},{"type":63,"value":893}," (required), ",{"type":58,"tag":112,"props":895,"children":897},{"className":896},[],[898],{"type":63,"value":231},{"type":63,"value":729},{"type":58,"tag":112,"props":901,"children":903},{"className":902},[],[904],{"type":63,"value":266},{"type":63,"value":906}," (max 100)",{"type":58,"tag":106,"props":908,"children":909},{},[910,919],{"type":58,"tag":74,"props":911,"children":912},{},[913],{"type":58,"tag":112,"props":914,"children":916},{"className":915},[],[917],{"type":63,"value":918},"FACEBOOK_RESCHEDULE_POST",{"type":63,"value":920}," -- Change the scheduled publish time",{"type":58,"tag":106,"props":922,"children":923},{},[924,933],{"type":58,"tag":74,"props":925,"children":926},{},[927],{"type":58,"tag":112,"props":928,"children":930},{"className":929},[],[931],{"type":63,"value":932},"FACEBOOK_UPDATE_POST",{"type":63,"value":934}," -- Edit caption\u002Ftext on an existing post",{"type":58,"tag":106,"props":936,"children":937},{},[938,947],{"type":58,"tag":74,"props":939,"children":940},{},[941],{"type":58,"tag":112,"props":942,"children":944},{"className":943},[],[945],{"type":63,"value":946},"FACEBOOK_PUBLISH_SCHEDULED_POST",{"type":63,"value":948}," -- Publish a scheduled post immediately",{"type":58,"tag":91,"props":950,"children":951},{},[],{"type":58,"tag":156,"props":953,"children":955},{"id":954},"_5-read-page-messenger-conversations",[956],{"type":63,"value":957},"5. Read Page Messenger Conversations",{"type":58,"tag":65,"props":959,"children":960},{},[961],{"type":63,"value":962},"Retrieve inbox conversations and message threads between users and your Page.",{"type":58,"tag":65,"props":964,"children":965},{},[966,970,971],{"type":58,"tag":74,"props":967,"children":968},{},[969],{"type":63,"value":174},{"type":63,"value":80},{"type":58,"tag":112,"props":972,"children":974},{"className":973},[],[975],{"type":63,"value":976},"FACEBOOK_GET_PAGE_CONVERSATIONS",{"type":58,"tag":183,"props":978,"children":979},{},[980,1002],{"type":58,"tag":187,"props":981,"children":982},{},[983],{"type":58,"tag":191,"props":984,"children":985},{},[986,990,994,998],{"type":58,"tag":195,"props":987,"children":988},{},[989],{"type":63,"value":199},{"type":58,"tag":195,"props":991,"children":992},{},[993],{"type":63,"value":204},{"type":58,"tag":195,"props":995,"children":996},{},[997],{"type":63,"value":209},{"type":58,"tag":195,"props":999,"children":1000},{},[1001],{"type":63,"value":214},{"type":58,"tag":216,"props":1003,"children":1004},{},[1005,1029,1060],{"type":58,"tag":191,"props":1006,"children":1007},{},[1008,1016,1020,1024],{"type":58,"tag":223,"props":1009,"children":1010},{},[1011],{"type":58,"tag":112,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":63,"value":328},{"type":58,"tag":223,"props":1017,"children":1018},{},[1019],{"type":63,"value":236},{"type":58,"tag":223,"props":1021,"children":1022},{},[1023],{"type":63,"value":406},{"type":58,"tag":223,"props":1025,"children":1026},{},[1027],{"type":63,"value":1028},"The Facebook Page ID",{"type":58,"tag":191,"props":1030,"children":1031},{},[1032,1040,1044,1048],{"type":58,"tag":223,"props":1033,"children":1034},{},[1035],{"type":58,"tag":112,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":63,"value":231},{"type":58,"tag":223,"props":1041,"children":1042},{},[1043],{"type":63,"value":236},{"type":58,"tag":223,"props":1045,"children":1046},{},[1047],{"type":63,"value":241},{"type":58,"tag":223,"props":1049,"children":1050},{},[1051,1053,1059],{"type":63,"value":1052},"Fields to return (default: ",{"type":58,"tag":112,"props":1054,"children":1056},{"className":1055},[],[1057],{"type":63,"value":1058},"participants,updated_time,id",{"type":63,"value":254},{"type":58,"tag":191,"props":1061,"children":1062},{},[1063,1071,1075,1079],{"type":58,"tag":223,"props":1064,"children":1065},{},[1066],{"type":58,"tag":112,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":63,"value":266},{"type":58,"tag":223,"props":1072,"children":1073},{},[1074],{"type":63,"value":271},{"type":58,"tag":223,"props":1076,"children":1077},{},[1078],{"type":63,"value":241},{"type":58,"tag":223,"props":1080,"children":1081},{},[1082],{"type":63,"value":1083},"Conversations to return, max 25",{"type":58,"tag":65,"props":1085,"children":1086},{},[1087],{"type":63,"value":1088},"Then retrieve full message threads:",{"type":58,"tag":65,"props":1090,"children":1091},{},[1092,1096,1097],{"type":58,"tag":74,"props":1093,"children":1094},{},[1095],{"type":63,"value":174},{"type":63,"value":80},{"type":58,"tag":112,"props":1098,"children":1100},{"className":1099},[],[1101],{"type":63,"value":1102},"FACEBOOK_GET_CONVERSATION_MESSAGES",{"type":58,"tag":183,"props":1104,"children":1105},{},[1106,1128],{"type":58,"tag":187,"props":1107,"children":1108},{},[1109],{"type":58,"tag":191,"props":1110,"children":1111},{},[1112,1116,1120,1124],{"type":58,"tag":195,"props":1113,"children":1114},{},[1115],{"type":63,"value":199},{"type":58,"tag":195,"props":1117,"children":1118},{},[1119],{"type":63,"value":204},{"type":58,"tag":195,"props":1121,"children":1122},{},[1123],{"type":63,"value":209},{"type":58,"tag":195,"props":1125,"children":1126},{},[1127],{"type":63,"value":214},{"type":58,"tag":216,"props":1129,"children":1130},{},[1131,1155,1195,1225],{"type":58,"tag":191,"props":1132,"children":1133},{},[1134,1142,1146,1150],{"type":58,"tag":223,"props":1135,"children":1136},{},[1137],{"type":58,"tag":112,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":63,"value":328},{"type":58,"tag":223,"props":1143,"children":1144},{},[1145],{"type":63,"value":236},{"type":58,"tag":223,"props":1147,"children":1148},{},[1149],{"type":63,"value":406},{"type":58,"tag":223,"props":1151,"children":1152},{},[1153],{"type":63,"value":1154},"Page ID that owns the conversation",{"type":58,"tag":191,"props":1156,"children":1157},{},[1158,1167,1171,1175],{"type":58,"tag":223,"props":1159,"children":1160},{},[1161],{"type":58,"tag":112,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":63,"value":1166},"conversation_id",{"type":58,"tag":223,"props":1168,"children":1169},{},[1170],{"type":63,"value":236},{"type":58,"tag":223,"props":1172,"children":1173},{},[1174],{"type":63,"value":406},{"type":58,"tag":223,"props":1176,"children":1177},{},[1178,1180,1186,1188,1194],{"type":63,"value":1179},"Conversation ID in ",{"type":58,"tag":112,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":63,"value":1185},"t_",{"type":63,"value":1187}," format (e.g., ",{"type":58,"tag":112,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":63,"value":1193},"t_3638640842939952",{"type":63,"value":254},{"type":58,"tag":191,"props":1196,"children":1197},{},[1198,1206,1210,1214],{"type":58,"tag":223,"props":1199,"children":1200},{},[1201],{"type":58,"tag":112,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":63,"value":231},{"type":58,"tag":223,"props":1207,"children":1208},{},[1209],{"type":63,"value":236},{"type":58,"tag":223,"props":1211,"children":1212},{},[1213],{"type":63,"value":241},{"type":58,"tag":223,"props":1215,"children":1216},{},[1217,1219],{"type":63,"value":1218},"Default: ",{"type":58,"tag":112,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":63,"value":1224},"id,created_time,from,to,message",{"type":58,"tag":191,"props":1226,"children":1227},{},[1228,1236,1240,1244],{"type":58,"tag":223,"props":1229,"children":1230},{},[1231],{"type":58,"tag":112,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":63,"value":266},{"type":58,"tag":223,"props":1237,"children":1238},{},[1239],{"type":63,"value":271},{"type":58,"tag":223,"props":1241,"children":1242},{},[1243],{"type":63,"value":241},{"type":58,"tag":223,"props":1245,"children":1246},{},[1247],{"type":63,"value":1248},"Messages to return, max 25",{"type":58,"tag":91,"props":1250,"children":1251},{},[],{"type":58,"tag":156,"props":1253,"children":1255},{"id":1254},"_6-send-messages-mark-as-seen",[1256],{"type":63,"value":1257},"6. Send Messages & Mark as Seen",{"type":58,"tag":65,"props":1259,"children":1260},{},[1261],{"type":63,"value":1262},"Respond to users via Messenger and mark messages as read.",{"type":58,"tag":65,"props":1264,"children":1265},{},[1266],{"type":58,"tag":74,"props":1267,"children":1268},{},[1269],{"type":63,"value":862},{"type":58,"tag":864,"props":1271,"children":1272},{},[1273,1287],{"type":58,"tag":106,"props":1274,"children":1275},{},[1276,1285],{"type":58,"tag":74,"props":1277,"children":1278},{},[1279],{"type":58,"tag":112,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":63,"value":1284},"FACEBOOK_SEND_MESSAGE",{"type":63,"value":1286}," -- Send a text message from the Page to a user via Messenger",{"type":58,"tag":106,"props":1288,"children":1289},{},[1290,1299],{"type":58,"tag":74,"props":1291,"children":1292},{},[1293],{"type":58,"tag":112,"props":1294,"children":1296},{"className":1295},[],[1297],{"type":63,"value":1298},"FACEBOOK_MARK_MESSAGE_SEEN",{"type":63,"value":1300}," -- Mark a user's message as seen by the Page",{"type":58,"tag":65,"props":1302,"children":1303},{},[1304,1309],{"type":58,"tag":74,"props":1305,"children":1306},{},[1307],{"type":63,"value":1308},"Warning:",{"type":63,"value":1310}," Both tools cause user-visible side effects. Only call after explicit confirmation.",{"type":58,"tag":91,"props":1312,"children":1313},{},[],{"type":58,"tag":95,"props":1315,"children":1317},{"id":1316},"known-pitfalls",[1318],{"type":63,"value":1319},"Known Pitfalls",{"type":58,"tag":183,"props":1321,"children":1322},{},[1323,1339],{"type":58,"tag":187,"props":1324,"children":1325},{},[1326],{"type":58,"tag":191,"props":1327,"children":1328},{},[1329,1334],{"type":58,"tag":195,"props":1330,"children":1331},{},[1332],{"type":63,"value":1333},"Pitfall",{"type":58,"tag":195,"props":1335,"children":1336},{},[1337],{"type":63,"value":1338},"Details",{"type":58,"tag":216,"props":1340,"children":1341},{},[1342,1370,1391,1419,1442,1465,1495,1511],{"type":58,"tag":191,"props":1343,"children":1344},{},[1345,1353],{"type":58,"tag":223,"props":1346,"children":1347},{},[1348],{"type":58,"tag":74,"props":1349,"children":1350},{},[1351],{"type":63,"value":1352},"Scheduling too close to now",{"type":58,"tag":223,"props":1354,"children":1355},{},[1356,1361,1363,1368],{"type":58,"tag":112,"props":1357,"children":1359},{"className":1358},[],[1360],{"type":63,"value":358},{"type":63,"value":1362}," with ",{"type":58,"tag":112,"props":1364,"children":1366},{"className":1365},[],[1367],{"type":63,"value":488},{"type":63,"value":1369}," less than ~10 minutes in the future returns HTTP 400 -- enforce a larger buffer for bulk runs",{"type":58,"tag":191,"props":1371,"children":1372},{},[1373,1381],{"type":58,"tag":223,"props":1374,"children":1375},{},[1376],{"type":58,"tag":74,"props":1377,"children":1378},{},[1379],{"type":63,"value":1380},"Unix UTC timestamps required",{"type":58,"tag":223,"props":1382,"children":1383},{},[1384,1389],{"type":58,"tag":112,"props":1385,"children":1387},{"className":1386},[],[1388],{"type":63,"value":488},{"type":63,"value":1390}," must be Unix UTC -- timezone conversion mistakes cause off-by-hours scheduling or validation failures",{"type":58,"tag":191,"props":1392,"children":1393},{},[1394,1402],{"type":58,"tag":223,"props":1395,"children":1396},{},[1397],{"type":58,"tag":74,"props":1398,"children":1399},{},[1400],{"type":63,"value":1401},"Cursor-based pagination",{"type":58,"tag":223,"props":1403,"children":1404},{},[1405,1410,1412,1417],{"type":58,"tag":112,"props":1406,"children":1408},{"className":1407},[],[1409],{"type":63,"value":878},{"type":63,"value":1411}," and ",{"type":58,"tag":112,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":63,"value":976},{"type":63,"value":1418}," return subsets -- follow paging cursors to get complete data",{"type":58,"tag":191,"props":1420,"children":1421},{},[1422,1430],{"type":58,"tag":223,"props":1423,"children":1424},{},[1425],{"type":58,"tag":74,"props":1426,"children":1427},{},[1428],{"type":63,"value":1429},"Large conversation payloads",{"type":58,"tag":223,"props":1431,"children":1432},{},[1433,1435,1440],{"type":63,"value":1434},"Requesting embedded messages in conversations creates huge payloads -- use ",{"type":58,"tag":112,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":63,"value":1102},{"type":63,"value":1441}," for full threads instead",{"type":58,"tag":191,"props":1443,"children":1444},{},[1445,1453],{"type":58,"tag":223,"props":1446,"children":1447},{},[1448],{"type":58,"tag":74,"props":1449,"children":1450},{},[1451],{"type":63,"value":1452},"Video processing delays",{"type":58,"tag":223,"props":1454,"children":1455},{},[1456,1458,1463],{"type":63,"value":1457},"Uploaded videos may remain in processing state -- only schedule via ",{"type":58,"tag":112,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":63,"value":605},{"type":63,"value":1464}," after the upload is usable",{"type":58,"tag":191,"props":1466,"children":1467},{},[1468,1476],{"type":58,"tag":223,"props":1469,"children":1470},{},[1471],{"type":58,"tag":74,"props":1472,"children":1473},{},[1474],{"type":63,"value":1475},"Cache page IDs",{"type":58,"tag":223,"props":1477,"children":1478},{},[1479,1481,1486,1488,1493],{"type":63,"value":1480},"Repeating ",{"type":58,"tag":112,"props":1482,"children":1484},{"className":1483},[],[1485],{"type":63,"value":181},{"type":63,"value":1487}," calls adds latency -- cache ",{"type":58,"tag":112,"props":1489,"children":1491},{"className":1490},[],[1492],{"type":63,"value":328},{"type":63,"value":1494}," per workspace\u002Frun",{"type":58,"tag":191,"props":1496,"children":1497},{},[1498,1506],{"type":58,"tag":223,"props":1499,"children":1500},{},[1501],{"type":58,"tag":74,"props":1502,"children":1503},{},[1504],{"type":63,"value":1505},"Pages only",{"type":58,"tag":223,"props":1507,"children":1508},{},[1509],{"type":63,"value":1510},"This toolkit does not support personal Facebook accounts -- only Facebook Pages",{"type":58,"tag":191,"props":1512,"children":1513},{},[1514,1522],{"type":58,"tag":223,"props":1515,"children":1516},{},[1517],{"type":58,"tag":74,"props":1518,"children":1519},{},[1520],{"type":63,"value":1521},"Write operations need confirmation",{"type":58,"tag":223,"props":1523,"children":1524},{},[1525,1530,1531,1536],{"type":58,"tag":112,"props":1526,"children":1528},{"className":1527},[],[1529],{"type":63,"value":1284},{"type":63,"value":1411},{"type":58,"tag":112,"props":1532,"children":1534},{"className":1533},[],[1535],{"type":63,"value":1298},{"type":63,"value":1537}," cause user-visible side effects -- only call after explicit user confirmation",{"type":58,"tag":91,"props":1539,"children":1540},{},[],{"type":58,"tag":95,"props":1542,"children":1544},{"id":1543},"quick-reference",[1545],{"type":63,"value":1546},"Quick Reference",{"type":58,"tag":183,"props":1548,"children":1549},{},[1550,1566],{"type":58,"tag":187,"props":1551,"children":1552},{},[1553],{"type":58,"tag":191,"props":1554,"children":1555},{},[1556,1561],{"type":58,"tag":195,"props":1557,"children":1558},{},[1559],{"type":63,"value":1560},"Tool Slug",{"type":58,"tag":195,"props":1562,"children":1563},{},[1564],{"type":63,"value":1565},"Purpose",{"type":58,"tag":216,"props":1567,"children":1568},{},[1569,1585,1602,1618,1634,1650,1666,1682,1698,1715,1731,1747,1763,1779,1796],{"type":58,"tag":191,"props":1570,"children":1571},{},[1572,1580],{"type":58,"tag":223,"props":1573,"children":1574},{},[1575],{"type":58,"tag":112,"props":1576,"children":1578},{"className":1577},[],[1579],{"type":63,"value":181},{"type":58,"tag":223,"props":1581,"children":1582},{},[1583],{"type":63,"value":1584},"List Pages you manage with access tokens",{"type":58,"tag":191,"props":1586,"children":1587},{},[1588,1597],{"type":58,"tag":223,"props":1589,"children":1590},{},[1591],{"type":58,"tag":112,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":63,"value":1596},"FACEBOOK_GET_PAGE_DETAILS",{"type":58,"tag":223,"props":1598,"children":1599},{},[1600],{"type":63,"value":1601},"Get detailed info about a specific Page",{"type":58,"tag":191,"props":1603,"children":1604},{},[1605,1613],{"type":58,"tag":223,"props":1606,"children":1607},{},[1608],{"type":58,"tag":112,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":63,"value":358},{"type":58,"tag":223,"props":1614,"children":1615},{},[1616],{"type":63,"value":1617},"Create or schedule a text\u002Flink post",{"type":58,"tag":191,"props":1619,"children":1620},{},[1621,1629],{"type":58,"tag":223,"props":1622,"children":1623},{},[1624],{"type":58,"tag":112,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":63,"value":605},{"type":58,"tag":223,"props":1630,"children":1631},{},[1632],{"type":63,"value":1633},"Create or schedule a video post",{"type":58,"tag":191,"props":1635,"children":1636},{},[1637,1645],{"type":58,"tag":223,"props":1638,"children":1639},{},[1640],{"type":58,"tag":112,"props":1641,"children":1643},{"className":1642},[],[1644],{"type":63,"value":878},{"type":58,"tag":223,"props":1646,"children":1647},{},[1648],{"type":63,"value":1649},"List scheduled\u002Funpublished posts",{"type":58,"tag":191,"props":1651,"children":1652},{},[1653,1661],{"type":58,"tag":223,"props":1654,"children":1655},{},[1656],{"type":58,"tag":112,"props":1657,"children":1659},{"className":1658},[],[1660],{"type":63,"value":918},{"type":58,"tag":223,"props":1662,"children":1663},{},[1664],{"type":63,"value":1665},"Change scheduled publish time",{"type":58,"tag":191,"props":1667,"children":1668},{},[1669,1677],{"type":58,"tag":223,"props":1670,"children":1671},{},[1672],{"type":58,"tag":112,"props":1673,"children":1675},{"className":1674},[],[1676],{"type":63,"value":932},{"type":58,"tag":223,"props":1678,"children":1679},{},[1680],{"type":63,"value":1681},"Edit an existing post",{"type":58,"tag":191,"props":1683,"children":1684},{},[1685,1693],{"type":58,"tag":223,"props":1686,"children":1687},{},[1688],{"type":58,"tag":112,"props":1689,"children":1691},{"className":1690},[],[1692],{"type":63,"value":946},{"type":58,"tag":223,"props":1694,"children":1695},{},[1696],{"type":63,"value":1697},"Publish a scheduled post immediately",{"type":58,"tag":191,"props":1699,"children":1700},{},[1701,1710],{"type":58,"tag":223,"props":1702,"children":1703},{},[1704],{"type":58,"tag":112,"props":1705,"children":1707},{"className":1706},[],[1708],{"type":63,"value":1709},"FACEBOOK_UPLOAD_VIDEO",{"type":58,"tag":223,"props":1711,"children":1712},{},[1713],{"type":63,"value":1714},"Upload a video file to a Page",{"type":58,"tag":191,"props":1716,"children":1717},{},[1718,1726],{"type":58,"tag":223,"props":1719,"children":1720},{},[1721],{"type":58,"tag":112,"props":1722,"children":1724},{"className":1723},[],[1725],{"type":63,"value":976},{"type":58,"tag":223,"props":1727,"children":1728},{},[1729],{"type":63,"value":1730},"List Messenger inbox conversations",{"type":58,"tag":191,"props":1732,"children":1733},{},[1734,1742],{"type":58,"tag":223,"props":1735,"children":1736},{},[1737],{"type":58,"tag":112,"props":1738,"children":1740},{"className":1739},[],[1741],{"type":63,"value":1102},{"type":58,"tag":223,"props":1743,"children":1744},{},[1745],{"type":63,"value":1746},"Retrieve messages from a conversation",{"type":58,"tag":191,"props":1748,"children":1749},{},[1750,1758],{"type":58,"tag":223,"props":1751,"children":1752},{},[1753],{"type":58,"tag":112,"props":1754,"children":1756},{"className":1755},[],[1757],{"type":63,"value":1284},{"type":58,"tag":223,"props":1759,"children":1760},{},[1761],{"type":63,"value":1762},"Send a Messenger message from the Page",{"type":58,"tag":191,"props":1764,"children":1765},{},[1766,1774],{"type":58,"tag":223,"props":1767,"children":1768},{},[1769],{"type":58,"tag":112,"props":1770,"children":1772},{"className":1771},[],[1773],{"type":63,"value":1298},{"type":58,"tag":223,"props":1775,"children":1776},{},[1777],{"type":63,"value":1778},"Mark a message as seen",{"type":58,"tag":191,"props":1780,"children":1781},{},[1782,1791],{"type":58,"tag":223,"props":1783,"children":1784},{},[1785],{"type":58,"tag":112,"props":1786,"children":1788},{"className":1787},[],[1789],{"type":63,"value":1790},"FACEBOOK_GET_PAGE_POSTS",{"type":58,"tag":223,"props":1792,"children":1793},{},[1794],{"type":63,"value":1795},"Retrieve posts from a Page feed",{"type":58,"tag":191,"props":1797,"children":1798},{},[1799,1808],{"type":58,"tag":223,"props":1800,"children":1801},{},[1802],{"type":58,"tag":112,"props":1803,"children":1805},{"className":1804},[],[1806],{"type":63,"value":1807},"FACEBOOK_GET_USER_PAGES",{"type":58,"tag":223,"props":1809,"children":1810},{},[1811],{"type":63,"value":1812},"List Pages with tasks and tokens",{"type":58,"tag":91,"props":1814,"children":1815},{},[],{"type":58,"tag":65,"props":1817,"children":1818},{},[1819],{"type":58,"tag":1820,"props":1821,"children":1822},"em",{},[1823,1825],{"type":63,"value":1824},"Powered by ",{"type":58,"tag":82,"props":1826,"children":1829},{"href":1827,"rel":1828},"https:\u002F\u002Fcomposio.dev",[86],[1830],{"type":63,"value":10},{"items":1832,"total":1976},[1833,1847,1863,1872,1882,1894,1903,1916,1930,1943,1956,1966],{"slug":1834,"name":1835,"fn":1836,"description":1837,"org":1838,"tags":1839,"stars":25,"repoUrl":26,"updatedAt":1846},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1840,1841,1842,1843],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1844,"slug":1845,"type":15},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":1848,"name":1849,"fn":1850,"description":1851,"org":1852,"tags":1853,"stars":25,"repoUrl":26,"updatedAt":1862},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1854,1855,1858,1859],{"name":17,"slug":18,"type":15},{"name":1856,"slug":1857,"type":15},"Communications","communications",{"name":20,"slug":21,"type":15},{"name":1860,"slug":1861,"type":15},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":1864,"name":1864,"fn":1865,"description":1866,"org":1867,"tags":1868,"stars":25,"repoUrl":26,"updatedAt":1871},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1869,1870],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:09:55.453088",{"slug":1873,"name":1873,"fn":1874,"description":1875,"org":1876,"tags":1877,"stars":25,"repoUrl":26,"updatedAt":1881},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1878,1879,1880],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:45:16.470309",{"slug":1883,"name":1883,"fn":1884,"description":1885,"org":1886,"tags":1887,"stars":25,"repoUrl":26,"updatedAt":1893},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1888,1889,1890],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":1891,"slug":1892,"type":15},"Security","security","2026-07-15T05:56:20.013366",{"slug":1895,"name":1895,"fn":1896,"description":1897,"org":1898,"tags":1899,"stars":25,"repoUrl":26,"updatedAt":1902},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1900,1901],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},"2026-07-15T05:54:50.762889",{"slug":1904,"name":1904,"fn":1905,"description":1906,"org":1907,"tags":1908,"stars":25,"repoUrl":26,"updatedAt":1915},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1909,1910,1911,1914],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1912,"slug":1913,"type":15},"CRM","crm",{"name":20,"slug":21,"type":15},"2026-07-15T05:48:43.429136",{"slug":1917,"name":1917,"fn":1918,"description":1919,"org":1920,"tags":1921,"stars":25,"repoUrl":26,"updatedAt":1929},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1922,1923,1926],{"name":17,"slug":18,"type":15},{"name":1924,"slug":1925,"type":15},"Documents","documents",{"name":1927,"slug":1928,"type":15},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":1931,"name":1931,"fn":1932,"description":1933,"org":1934,"tags":1935,"stars":25,"repoUrl":26,"updatedAt":1942},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1936,1937,1938,1939],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1940,"slug":1941,"type":15},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":1944,"name":1944,"fn":1945,"description":1946,"org":1947,"tags":1948,"stars":25,"repoUrl":26,"updatedAt":1955},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1949,1950,1951,1952],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1912,"slug":1913,"type":15},{"name":1953,"slug":1954,"type":15},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":1957,"name":1957,"fn":1958,"description":1959,"org":1960,"tags":1961,"stars":25,"repoUrl":26,"updatedAt":1965},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1962,1963,1964],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:47:51.742515",{"slug":1967,"name":1967,"fn":1968,"description":1969,"org":1970,"tags":1971,"stars":25,"repoUrl":26,"updatedAt":1975},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1972,1973,1974],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},"2026-07-15T05:45:05.303254",863,{"items":1978,"total":2022},[1979,1986,1993,1998,2004,2010,2015],{"slug":1834,"name":1835,"fn":1836,"description":1837,"org":1980,"tags":1981,"stars":25,"repoUrl":26,"updatedAt":1846},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1982,1983,1984,1985],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"name":1844,"slug":1845,"type":15},{"slug":1848,"name":1849,"fn":1850,"description":1851,"org":1987,"tags":1988,"stars":25,"repoUrl":26,"updatedAt":1862},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1989,1990,1991,1992],{"name":17,"slug":18,"type":15},{"name":1856,"slug":1857,"type":15},{"name":20,"slug":21,"type":15},{"name":1860,"slug":1861,"type":15},{"slug":1864,"name":1864,"fn":1865,"description":1866,"org":1994,"tags":1995,"stars":25,"repoUrl":26,"updatedAt":1871},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[1996,1997],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"slug":1873,"name":1873,"fn":1874,"description":1875,"org":1999,"tags":2000,"stars":25,"repoUrl":26,"updatedAt":1881},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2001,2002,2003],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":20,"slug":21,"type":15},{"slug":1883,"name":1883,"fn":1884,"description":1885,"org":2005,"tags":2006,"stars":25,"repoUrl":26,"updatedAt":1893},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2007,2008,2009],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":1891,"slug":1892,"type":15},{"slug":1895,"name":1895,"fn":1896,"description":1897,"org":2011,"tags":2012,"stars":25,"repoUrl":26,"updatedAt":1902},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2013,2014],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"slug":1904,"name":1904,"fn":1905,"description":1906,"org":2016,"tags":2017,"stars":25,"repoUrl":26,"updatedAt":1915},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[2018,2019,2020,2021],{"name":17,"slug":18,"type":15},{"name":10,"slug":9,"type":15},{"name":1912,"slug":1913,"type":15},{"name":20,"slug":21,"type":15},860]