Skip to content

Facebook Page

OpenQuok MCP examples for Facebook Page — text, photos, link previews, and follow-up comments.

1 min read

Connect your agent today

Draft from chat, review in your calendar, and publish only what you approve.

Start for $0

Channel quick reference

PropertyValue
Provider identifierfacebook
OAuth setupFacebook Page

Text-only Page post

Schedule a Facebook Page post for Monday at noon: Hello from our Page

{
  "type": "schedule",
  "date": "2026-06-30T12:00:00.000Z",
  "socialPost": [
    {
      "integration": "<facebook-page-integration-id>",
      "postsAndComments": ["Hello from our Page"]
    }
  ]
}

Post with an image URL

Schedule a photo post to my Facebook Page with https://example.com/hero.jpg and caption “Photo update”

{
  "type": "schedule",
  "date": "2026-06-30T12:00:00.000Z",
  "socialPost": [
    {
      "integration": "<facebook-page-integration-id>",
      "postsAndComments": ["Photo update"],
      "attachments": ["https://example.com/hero.jpg"]
    }
  ]
}

Link post

Schedule a link post to my Facebook Page pointing to https://example.com/article with text “Read more on our site”

{
  "type": "schedule",
  "date": "2026-06-30T12:00:00.000Z",
  "socialPost": [
    {
      "integration": "<facebook-page-integration-id>",
      "postsAndComments": ["Read more on our site"],
      "settings": { "url": "https://example.com/article" }
    }
  ]
}

Follow-up comment

Post an announcement to my Facebook Page now, then add a comment with the signup link.

Use multiple postsAndComments strings — the first is the Page post, the rest become comments:

{
  "type": "now",
  "socialPost": [
    {
      "integration": "<facebook-page-integration-id>",
      "postsAndComments": [
        "We just launched something big!",
        "Check it out at example.com"
      ]
    }
  ]
}
Search documentation
Find a docs page
Discord Support