Facebook Page
OpenQuok MCP examples for Facebook Page — text, photos, link previews, and follow-up comments.
Connect your agent today
Draft from chat, review in your calendar, and publish only what you approve.
Channel quick reference
| Property | Value |
|---|---|
| Provider identifier | |
| OAuth setup | Facebook 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"]
}
]
} Attach media in chat
Instead of a public URL in your prompt, attach the image directly in your MCP client chat — then ask the agent to schedule the post with that file and your caption.
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"
]
}
]
}