npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@node2flow/facebook-pages-mcp

v1.0.0

Published

MCP server for Facebook Pages API — manage posts, comments, photos, videos, insights, and messenger through 28 tools

Readme

@node2flow/facebook-pages-mcp

npm version Smithery License: MIT

MCP server for Facebook Pages API — manage posts, comments, photos, videos, insights, and Messenger conversations through 28 tools.

Quick Start

Claude Desktop / Cursor

{
  "mcpServers": {
    "facebook-pages": {
      "command": "npx",
      "args": ["-y", "@node2flow/facebook-pages-mcp"],
      "env": {
        "FACEBOOK_PAGE_ACCESS_TOKEN": "your_page_access_token"
      }
    }
  }
}

Streamable HTTP (for n8n, custom clients)

FACEBOOK_PAGE_ACCESS_TOKEN=xxx npx @node2flow/facebook-pages-mcp --http
# Server starts on http://localhost:3000/mcp

Docker

docker compose up -d

Configuration

| Variable | Required | Description | |----------|----------|-------------| | FACEBOOK_PAGE_ACCESS_TOKEN | Yes | Page Access Token (long-lived or never-expiring) | | FACEBOOK_PAGE_ID | No | Page ID (auto-detected from token if not set) |

Getting a Page Access Token

  1. Go to Meta for Developers
  2. Select your app, then select Get Page Access Token
  3. Grant the required permissions (see below)
  4. Exchange for a long-lived token (60 days) or never-expiring page token

Required Permissions

  • pages_show_list — List managed pages
  • pages_read_engagement — Read likes, comments, shares
  • pages_manage_posts — Create, edit, delete posts
  • pages_manage_engagement — Manage comments
  • read_insights — Access analytics
  • pages_messaging — Send/receive Messenger messages

28 Tools

| Category | Tools | Description | |----------|-------|-------------| | Pages (3) | fb_list_pages, fb_get_page, fb_get_page_token | List managed pages, get info, get access tokens | | Posts (6) | fb_list_posts, fb_get_post, fb_create_post, fb_update_post, fb_delete_post, fb_schedule_post | Full CRUD + scheduling | | Comments (5) | fb_list_comments, fb_create_comment, fb_reply_comment, fb_delete_comment, fb_hide_comment | Comment management + moderation | | Photos (3) | fb_upload_photo, fb_list_photos, fb_delete_photo | Upload from URL, list, delete | | Videos (3) | fb_upload_video, fb_list_videos, fb_delete_video | Upload from URL, list, delete | | Insights (4) | fb_get_page_insights, fb_get_post_insights, fb_get_page_fans, fb_get_page_views | Page and post analytics | | Conversations (4) | fb_list_conversations, fb_get_messages, fb_send_message, fb_send_typing | Messenger integration |

Prompts

| Prompt | Description | |--------|-------------| | manage-page | Guide for managing page content: posts, photos, videos, comments | | page-analytics | Guide for viewing page insights and analytics |

License & Links