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/instagram-mcp

v1.0.1

Published

MCP server for Instagram Graph API — publish photos/reels/carousels, manage comments, view insights, and search hashtags through 25 tools

Readme

@node2flow/instagram-mcp

npm version Smithery License: MIT

MCP server for Instagram Graph API — publish photos, reels, carousels, and stories, manage comments, view insights, and search hashtags through 25 tools.

Quick Start

Claude Desktop / Cursor

{
  "mcpServers": {
    "instagram": {
      "command": "npx",
      "args": ["-y", "@node2flow/instagram-mcp"],
      "env": {
        "INSTAGRAM_ACCESS_TOKEN": "your_access_token",
        "INSTAGRAM_ACCOUNT_ID": "your_ig_business_account_id"
      }
    }
  }
}

Streamable HTTP (for n8n, custom clients)

INSTAGRAM_ACCESS_TOKEN=xxx npx @node2flow/instagram-mcp --http
# Server starts on http://localhost:3000/mcp

Docker

docker compose up -d

Configuration

| Variable | Required | Description | |----------|----------|-------------| | INSTAGRAM_ACCESS_TOKEN | Yes | Facebook/Instagram User Access Token with instagram_* permissions | | INSTAGRAM_ACCOUNT_ID | No | Instagram Business Account ID (find via Facebook Page settings) |

Getting an Access Token

  1. Go to Meta for Developers > Graph API Explorer
  2. Select your app, request these permissions:
    • instagram_basic — Read profile and media
    • instagram_content_publish — Publish media
    • instagram_manage_comments — Manage comments
    • instagram_manage_insights — Read insights
    • pages_show_list, pages_read_engagement
  3. Generate a User Access Token and exchange for a long-lived token

Finding Your Instagram Account ID

GET /me/accounts?fields=instagram_business_account

The instagram_business_account.id is your Instagram Account ID.

25 Tools

| Category | Tools | Description | |----------|-------|-------------| | Account (3) | ig_get_account, ig_get_account_insights, ig_list_media | Profile info, analytics, media list | | Publishing (4) | ig_publish_photo, ig_publish_carousel, ig_publish_reel, ig_publish_story | Create posts, reels, carousels, stories | | Media (3) | ig_get_media, ig_get_media_insights, ig_get_children | Media details, analytics, carousel items | | Comments (6) | ig_list_comments, ig_get_comment, ig_reply_comment, ig_delete_comment, ig_hide_comment, ig_list_replies | Comment management + moderation + replies | | Discovery (1) | ig_discover_user | Look up other Business/Creator accounts | | Limit (1) | ig_get_content_publishing_limit | Check publishing rate limit (50/day) | | Stories (2) | ig_list_stories, ig_get_story_insights | Active stories + analytics | | Hashtags (3) | ig_search_hashtag, ig_get_hashtag_recent, ig_get_hashtag_top | Hashtag research + discovery | | Mentions (2) | ig_list_tags, ig_get_mentioned_media | Tagged and mentioned media |

Prompts

| Prompt | Description | |--------|-------------| | content-publishing | Guide for publishing photos, reels, carousels, and stories | | analytics-guide | Guide for viewing account and media insights |

License & Links