mcp-meta-inbox
Allows managing Facebook Page inbox, posts, and comments, including sending messages, moderating comments, and replying.
Allows reading and replying to Instagram comments on business accounts, and with advanced access, Instagram Direct messages.
Allows reading and sending messages in Messenger conversations as a Facebook Page.
Provides tools for integrating with Meta's Messenger Platform and Instagram Messaging APIs to manage inbox, comments, and moderation.
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., "@mcp-meta-inboxSummarize the last 10 conversations and flag unanswered ones."
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.
mcp-meta-inbox
MCP server that wraps the Meta Messenger Platform, Instagram Messaging and comment moderation APIs (Graph API v25.0) as semantic tools for LLM agents.
Read your Page inbox, reply to students, and moderate comments on Facebook posts and Instagram media — from natural language.
Works with Claude Code, Codex, Claude Desktop, Cursor, VS Code, Windsurf, and any MCP-compatible client.
Companion to mcp-meta-marketing, which covers ads. They do not share a token — see Why not the Marketing API token.
Quick Start
claude mcp add meta-inbox -s user \
-e META_PAGE_ACCESS_TOKEN=your-page-token \
-e META_PAGE_ID=your-page-id \
-- npx -y github:pauloFroes/mcp-meta-inboxThen just ask in natural language:
Don't have a Page token yet? See How to get your Page Access Token below.
Related MCP server: mcp-meta-marketing
What you can do
Work the inbox:
"Who messaged the Page today and what did they ask?"
"Summarize the last 20 conversations and flag the ones still unanswered"
"Read thread t_1997631717587281 and draft a reply about the course schedule"
"Mark Sandro's conversation as seen"Moderate comments:
"List the comments on my latest Instagram post"
"Which comments are questions nobody answered?"
"Reply to that comment asking about the price"
"Hide the spam comment on last week's Facebook post"
"Answer that public question privately instead"Availability at a glance
Surface | Read | Write | Requirement |
Messenger inbox | ✅ | ✅ | Page token |
Facebook comments | ✅ | ✅ | Page token |
Instagram comments | ✅ | ✅ | Page token |
Instagram Direct | ⛔ | ⛔ | Advanced Access to |
Instagram Direct is gated by Meta, not by this server. Without Advanced Access the API answers a /conversations?platform=instagram call with a ~27s timeout (error_subcode: 2534084) explaining that too many threads belong to people with no role on the app. Instagram comments are unaffected and work today. The tools are shipped anyway so they start working the moment App Review clears — and check_access tells you where you stand.
Available Tools
Diagnostics
Tool | Description |
| Report token type, expiry, messaging scopes, and which capabilities actually answer right now |
Inbox
Tool | Description |
| List inbox threads with participants, unread count and last-message snippet |
| Read one thread in full — participants plus recent messages |
| List messages inside a thread |
| Read a single message, including attachments |
| Send a DM as the Page (text or image) |
| Mark seen, or toggle the typing indicator |
Posts and comments
Tool | Description |
| List Facebook Page posts or Instagram media |
| List comments on a post/media, or replies to a comment |
| Read one comment with its moderation flags |
| Post a top-level comment (Facebook only) |
| Reply publicly as the Page (routes Facebook vs Instagram automatically) |
| Edit a comment the Page authored (Facebook only) |
| Hide/unhide a comment — reversible moderation |
| Delete a comment permanently (irreversible) |
| Answer a public comment with a private DM to its author |
Platform asymmetries worth knowing
These are Meta's limits, surfaced as clear tool errors rather than opaque failures:
Operation | ||
Reply to a comment |
|
|
Edit your own comment | ✅ | ⛔ not supported by the API — delete and re-post |
New top-level comment | ✅ | ⛔ replies only |
Hide a comment |
|
|
private_reply works once per comment, within 7 days of it. send_message only allows a free-form reply within 24 hours of the person's last message.
Installation
You need two environment variables (a third is optional):
Variable | Required | Description |
| yes | Page token issued to a person who administers the Page (how to get one) |
| yes | Numeric Page ID — Meta Business Suite → Page → About |
| no | Instagram Business account ID. Auto-discovered from the Page when omitted |
Claude Code
Three installation scopes are available:
Scope | Flag | Config file | Use case |
local |
|
| This project only (default) |
project |
|
| Shared with team via git |
user |
|
| All your projects |
Quick setup (inline env vars):
claude mcp add meta-inbox -s user \
-e META_PAGE_ACCESS_TOKEN=your-page-token \
-e META_PAGE_ID=your-page-id \
-- npx -y github:pauloFroes/mcp-meta-inboxPersistent setup (.env file):
Add to your .mcp.json:
{
"meta-inbox": {
"command": "npx",
"args": ["-y", "github:pauloFroes/mcp-meta-inbox"],
"env": {
"META_PAGE_ACCESS_TOKEN": "${META_PAGE_ACCESS_TOKEN}",
"META_PAGE_ID": "${META_PAGE_ID}",
"META_IG_USER_ID": "${META_IG_USER_ID}"
}
}
}Then define the values in your .env file. See .env.example.
Codex
[mcp_servers.meta-inbox]
command = "npx"
args = ["-y", "github:pauloFroes/mcp-meta-inbox"]
env_vars = ["META_PAGE_ACCESS_TOKEN", "META_PAGE_ID", "META_IG_USER_ID"]Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"meta-inbox": {
"command": "npx",
"args": ["-y", "github:pauloFroes/mcp-meta-inbox"],
"env": {
"META_PAGE_ACCESS_TOKEN": "your-page-token",
"META_PAGE_ID": "your-page-id"
}
}
}
}Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"meta-inbox": {
"command": "npx",
"args": ["-y", "github:pauloFroes/mcp-meta-inbox"],
"env": {
"META_PAGE_ACCESS_TOKEN": "your-page-token",
"META_PAGE_ID": "your-page-id"
}
}
}
}VS Code
Add to .vscode/mcp.json in your project:
{
"servers": {
"meta-inbox": {
"command": "npx",
"args": ["-y", "github:pauloFroes/mcp-meta-inbox"],
"env": {
"META_PAGE_ACCESS_TOKEN": "your-page-token",
"META_PAGE_ID": "your-page-id"
}
}
}
}Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"meta-inbox": {
"command": "npx",
"args": ["-y", "github:pauloFroes/mcp-meta-inbox"],
"env": {
"META_PAGE_ACCESS_TOKEN": "your-page-token",
"META_PAGE_ID": "your-page-id"
}
}
}
}Why not the Marketing API token
If you already run mcp-meta-marketing, the obvious move is to reuse its META_ACCESS_TOKEN. It does not work here.
That token is normally a System User token. The Conversations API rejects System User tokens — but it does not say so. It answers:
{"error":{"message":"An unexpected error has occurred. Please retry your request later.",
"type":"OAuthException","code":2,"is_transient":true}}…which reads like a transient server fault and is identical across API versions. Retrying never helps. The inbox needs a Page token that was requested by a person with the MODERATE task on the Page.
This server refuses to start if it finds META_ACCESS_TOKEN but no META_PAGE_ACCESS_TOKEN, and prints how to fix it. Run check_access any time you're unsure which kind of token you're holding.
Instagram comments happen to work with either token. Everything else needs the Page token, so this server standardizes on it.
How to get your Page Access Token
Requires an existing Meta App with the Messenger and Instagram use cases added, and a Business Portfolio that owns the Page.
Go to developers.facebook.com → your app → Use cases
Open "Interact with customers on Messenger from Meta" → Customize
In the left menu, pick Messenger API settings
Under 2. Generate access tokens, connect your Page if it isn't listed
Click Generate on the Page row → tick the acknowledgement → Copy
The token is shown only once. It never expires (expires_at: 0 in the Access Token Debugger) unless you revoke it or lose the admin role.
Do not generate this from business.facebook.com → System Users — that produces a System User token, which the inbox rejects. See the section above.
Verify what you got:
curl -s "https://graph.facebook.com/v25.0/debug_token?input_token=$TOKEN&access_token=$TOKEN"You want "type": "PAGE", "expires_at": 0, and a user_id that is your personal profile — not a System User.
Instagram Direct: requesting Advanced Access
Reading Instagram DMs from people who have no role on your app requires Advanced Access to instagram_manage_messages, which only App Review grants. In your app → Use cases → the Instagram or Messenger use case → Permissions and features → the permission row → Actions → Add to app review. Expect to supply a working prototype and a screencast.
Nothing else in this server depends on it.
Safety notes
Six tools write to the outside world. send_message and private_reply message a real person; create_comment, reply_to_comment and update_comment publish publicly under the Page's name; delete_comment is irreversible. They are annotated (readOnlyHint / destructiveHint) so MCP clients can gate them, but you should still confirm the recipient and the exact text with a human before firing them.
hide_comment is the reversible alternative to delete_comment for moderation.
License
MIT
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/pauloFroes/mcp-meta-inbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server