facebook-pages-mcp
Provides tools for managing Facebook Pages, including publishing posts, retrieving page insights, analyzing post performance, and moderating comments via the Meta Graph API v25.0.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@facebook-pages-mcpshow me last week's page insights"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
facebook-pages-mcp
MCP server for Facebook Pages organic analytics and management, powered by Meta Graph API v25.0.
Built for Claude Code and any MCP-compatible AI tool. Gives your AI assistant direct access to your Facebook Page data — posts, insights, comments, and more.
Part of The SEO Engine toolkit by Rex Jones — AI-powered SEO and social media tooling for agencies and businesses.
Why this exists
No good Facebook Pages MCP server existed. Instagram has several. Facebook Pages had none that worked on a current API version.
Meta deprecated legacy metrics on June 15, 2026.
page_impressions,page_reach, andpage_impressions_uniqueno longer return data. This server uses the replacement metrics from day one.Business Manager support. Most businesses manage Pages through Meta Business Manager, not personal accounts. This server works with both.
Related MCP server: mcp-meta-marketing
Quick start
Option 1: npx (no install)
{
"mcpServers": {
"facebook-pages": {
"command": "npx",
"args": ["-y", "facebook-pages-mcp"],
"env": {
"FB_PAGE_ACCESS_TOKEN": "your_page_access_token",
"FB_PAGE_ID": "your_page_id"
}
}
}
}Option 2: Clone and build
git clone https://github.com/lanternrow/facebook-pages-mcp.git
cd facebook-pages-mcp
npm install
npm run buildThen add to your Claude Code MCP settings:
{
"mcpServers": {
"facebook-pages": {
"command": "node",
"args": ["/path/to/facebook-pages-mcp/dist/index.js"],
"env": {
"FB_PAGE_ACCESS_TOKEN": "your_page_access_token",
"FB_PAGE_ID": "your_page_id"
}
}
}
}Getting your Page Access Token
Step 1: Create a Meta App
Go to Meta for Developers and click Create App
Name your app and choose the "Manage everything on your Page" use case
Connect it to your Business Portfolio
Step 2: Generate a token in the Graph API Explorer
Open the Graph API Explorer
Select your app from the Meta App dropdown
Add permissions:
pages_show_list,pages_read_engagement,business_managementClick Generate Access Token and complete the OAuth flow
When asked about Pages, select "Opt in to all current and future Pages"
Step 3: Get your Page Access Token
If your Pages are managed through Business Manager (most businesses):
# First, find your business ID
GET /me/businesses?fields=id,name
# Then get Page tokens for that business
GET /{business-id}/owned_pages?fields=id,name,access_tokenIf your Pages are on your personal account:
GET /me/accounts?fields=id,name,access_tokenCopy the access_token and id for the Page you want.
Step 4: Exchange for a long-lived token (recommended)
Short-lived tokens expire in ~1 hour. Exchange for a long-lived token (~60 days):
GET /oauth/access_token
?grant_type=fb_exchange_token
&client_id={your-app-id}
&client_secret={your-app-secret}
&fb_exchange_token={short-lived-token}Tip: For Pages you admin, Page tokens derived from a long-lived User Token never expire.
Tools
Read tools
Tool | Description |
| Page metadata: name, category, follower count, contact info, cover photo |
| Page-level analytics with date ranges and period aggregation (day/week/28-day) |
| Paginated list of posts authored by the Page |
| Per-post engagement: impressions, clicks, reactions by type |
| Paginated comments with author info and like/reply counts |
| Video performance: views, watch time, reactions |
| Full feed including visitor posts |
Write tools
Tool | Description |
| Publish text, link, or photo posts to the Page |
Utility tools
Tool | Description |
| Check token validity, expiration, and granted scopes |
Metrics and the June 2026 deprecation
Meta deprecated these page-level metrics on June 15, 2026:
Deprecated | Replacement |
|
|
| Page Viewer metric (rolling out) |
| Media Viewers metric (rolling out) |
This server uses only non-deprecated metrics: page_views_total, page_fans, page_fan_adds, page_fan_removes, page_actions_post_reactions_total.
Architecture
src/
index.ts # MCP server entry point, tool registration
client.ts # Graph API HTTP client (native fetch, no dependencies)
types.ts # TypeScript interfaces for API responses
tools/
pages.ts # get_page_info, get_page_feed
insights.ts # get_page_insights, get_video_insights
posts.ts # get_published_posts, get_post_insights, get_post_comments, create_post
utils.ts # refresh_token_infoZero external HTTP dependencies — uses Node 18+ native
fetchRate limit tracking — captures
x-app-usageandx-page-usageheadersCursor-based pagination — all list endpoints support
aftercursor and configurable limitsZod validation — all tool inputs validated with descriptive error messages
Environment variables
Variable | Required | Description |
| Yes | Long-lived Page Access Token |
| Yes | Default Facebook Page ID (numeric) |
Development
npm run dev # Watch mode — recompiles on save
npm run build # Production build
npm start # Run the serverContributing
Issues and PRs welcome. If Meta changes the API (they will), please open an issue.
License
MIT — see LICENSE.
Built as part of The SEO Engine by Rex Jones.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lanternrow/facebook-pages-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server