mcp-facebook
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FACEBOOK_PAGE_ID | Yes | Numeric ID of your Facebook Page | |
| FACEBOOK_PAGE_ACCESS_TOKEN | Yes | Long-lived Page Access Token with the required permissions |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| facebook_create_postA | Create and publish an immediate post on the Facebook Page. Supports text, link, and picture attachments. |
| facebook_schedule_postB | Schedule a Facebook Page post for a future time. The scheduled_time must be between 10 minutes and 6 months from now (ISO 8601 format). |
| facebook_delete_postA | Permanently delete a post from the Facebook Page by its post ID. |
| facebook_get_postsB | Retrieve recent posts from the Facebook Page feed. Returns post ID, message, creation time, and story. |
| facebook_get_commentsA | Retrieve comments on a specific Facebook post. Returns comment ID, message, author name, and creation time. |
| facebook_reply_commentC | Reply to an existing comment on a Facebook post by posting a sub-comment. |
| facebook_hide_commentB | Hide or unhide a comment on a Facebook Page post. Hidden comments are still visible to the commenter but not to others. |
| facebook_get_insightsB | Retrieve Page-level analytics insights from Facebook. Choose a metric, aggregation period, and optional date preset. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct resource and action: post CRUD, comment interactions, and insights. The boundaries between immediate posting (facebook_create_post) and scheduling (facebook_schedule_post) are clearly described, leaving no room for misselection.
All tool names follow the consistent facebook_verb_noun pattern in snake_case (e.g., facebook_get_posts, facebook_create_post, facebook_reply_comment). Verb choices are predictable and resource nouns are clear.
Eight tools is a well-scoped set for a Facebook Page management server. Each tool serves a unique purpose, and there is no redundant or bloat functionality.
The toolset covers core post operations (create, read, schedule, delete), comment management (read, reply, hide), and insights retrieval. However, missing post editing/update and comment deletion are minor gaps that agents can work around.