drashrafsaiyed-cyber/instagram-mcp

🌐 Social Media🟒 Verified Active
0 Views
0 Installs

🐍 ☁️ - Control Instagram from Claude: publish photos, reels, and carousels, read account insights, manage comments, and reply to DMs. 14 tools via the Instagram Login API. One-click free Render deploy for Claude Web and mobile.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "drashrafsaiyed-cyber-instagram-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "drashrafsaiyed-cyber-instagram-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

πŸ“Έ Instagram MCP Server

Control your Instagram from Claude β€” post, analyze, reply to DMs, manage comments. All by chatting.

License: MIT Python 3.11+ MCP Deploy to Render


🎬 Demo GIF coming soon β€” Claude posting a reel, reading insights, replying to comments live on screen.


What You Can Do

Ask Claude in plain English. It handles the API.

"Show my last 10 posts and which got the most reach"
"Post this image with caption: Monday motivation πŸ’ͺ #AI #Health"
"Read my DMs from today and draft replies for the questions"
"Hide all spam comments on my latest reel"
"What are my account insights for this week?"
"Which of my reels got the best watch time?"

Use Cases

πŸ“Š Content Creator

  • Morning briefing: "Show yesterday's post performance β€” reach, saves, shares"
  • Strategy: "Compare my last 5 reels by reach and tell me what worked"
  • Scheduling prep: "Draft 3 caption options for this fitness post"

πŸ₯ Doctor / Professional

  • Engagement: "Reply to all comments on my last post professionally"
  • Growth tracking: "How many followers did I gain this week?"
  • Content audit: "List all posts from this month with their engagement rates"

πŸ›οΈ Small Business

  • Customer service: "Show DMs from the last 24 hours and reply to order questions"
  • Publishing: "Post this product photo with this caption and these hashtags"
  • Analytics: "Which post type (reel/carousel/photo) gets me the most reach?"

Tools (14 total)

CategoryToolWhat it does
Accountget_account_infoFollowers, bio, post count
update_profileUpdate bio text and/or website URL
list_recent_mediaLast N posts with engagement stats
get_account_insightsReach, profile views, follower growth
Insightsget_media_insightsPer-post reach, saves, views, interactions
Publishingpublish_photoPost a photo with caption + hashtags
publish_reelPost a Reel (video)
publish_carouselPost 2–10 images as carousel
Commentsget_commentsRead all comments on a post
reply_to_commentReply to a comment
hide_commentHide spam/unwanted comments
delete_commentPermanently delete a comment
Engagementlike_mediaLike a post or reel
unlike_mediaUnlike a post or reel
like_commentLike a comment
Contentdelete_postPermanently delete a post
Hashtagssearch_hashtagSearch public posts by hashtag
Eventslist_eventsList upcoming events
create_eventCreate a new event (health camps, workshops)
Adsget_ad_accountsList linked ad accounts
get_ad_insightsGet ad spend, reach, CTR
DMslist_conversationsList active DM threads
get_messagesRead messages in a thread
send_dmReply to a DM (24h window)
send_human_agent_dmReply within 7-day Human Agent window

Quick Start

Option A β€” Claude Web + Mobile (Recommended)

1. Deploy your server (free, 2 min):

Deploy to Render

Fill in META_ACCESS_TOKEN and IG_USER_ID when prompted. (How to get these ↓)

2. Connect to Claude web:

  • claude.ai β†’ Settings β†’ Integrations β†’ Add Integration
  • Paste: https://your-app-name.onrender.com/mcp

3. Done. Open a new chat and try: "Show my recent Instagram posts"


Option B β€” Claude Desktop (Local)

git clone https://github.com/drashrafsaiyed-cyber/instagram-mcp
cd instagram-mcp
uv sync
cp .env.example .env
# Fill .env with your token and user ID
uv run server.py

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "instagram": {
      "command": "uv",
      "args": ["--directory", "/path/to/instagram-mcp", "run", "server.py"],
      "env": {
        "META_ACCESS_TOKEN": "your_token",
        "IG_USER_ID": "your_ig_user_id",
        "ACCOUNT_NAME": "My Instagram"
      }
    }
  }
}

Option C β€” Multiple Instagram Accounts (Claude Desktop)

Run the same server folder multiple times with different env vars. Claude sees each as a separate named MCP and never confuses them.

{
  "mcpServers": {
    "instagram-personal": {
      "command": "uv",
      "args": ["--directory", "/path/to/instagram-mcp", "run", "server.py"],
      "env": {
        "META_ACCESS_TOKEN": "TOKEN_FOR_ACCOUNT_1",
        "IG_USER_ID": "IG_USER_ID_1",
        "ACCOUNT_NAME": "Personal"
      }
    },
    "instagram-business": {
      "command": "uv",
      "args": ["--directory", "/path/to/instagram-mcp", "run", "server.py"],
      "env": {
        "META_ACCESS_TOKEN": "TOKEN_FOR_ACCOUNT_2",
        "IG_USER_ID": "IG_USER_ID_2",
        "ACCOUNT_NAME": "My Business"
      }
    }
  }
}

Claude will show separate tools per account β€” "Post this to My Business" picks the right one automatically.

Each account must be a Business or Creator Instagram account, and must be added as a tester in your Meta app β†’ Use cases β†’ Step 2: Generate access tokens β†’ Add account.


Getting Your Token

This server uses the Instagram Login API (graph.instagram.com) β€” the modern Meta approach for Instagram Business/Creator accounts.

Step 1 β€” Create or open your Meta app

  1. Go to developers.facebook.com β†’ My Apps
  2. Create a new app or open an existing one
  3. Add use case: "Manage messaging & content on Instagram"

Step 2 β€” Generate your access token

  1. Use cases β†’ Customize β†’ API Setup with Instagram Login
  2. Step 2: Generate access tokens β†’ click Generate next to your account
  3. Copy the token β†’ this is your META_ACCESS_TOKEN
  4. Your numeric IG User ID is shown below your username on the same page

Step 3 β€” Refresh before expiry (60 days)

curl "https://graph.instagram.com/refresh_access_token?grant_type=ig_refresh_token&access_token=YOUR_TOKEN"

Or just run this in your project folder:

uv run python -c "
import httpx, re
from pathlib import Path
env = Path('.env').read_text()
token = re.search(r'META_ACCESS_TOKEN=(.+)', env).group(1).strip()
r = httpx.get('https://graph.instagram.com/refresh_access_token', params={'grant_type':'ig_refresh_token','access_token':token})
new = r.json()['access_token']
Path('.env').write_text(env.replace(token, new))
print('Refreshed. Expires in:', r.json()['expires_in']//86400, 'days')
"

Requirements

  • Instagram Business or Creator account
  • Meta Developer app with "Manage messaging & content on Instagram" use case
  • Python 3.11+

Publishing note: Images and videos must be at a public HTTPS URL β€” Instagram fetches from your URL. Use Cloudinary (free), S3, or a public GitHub raw URL. Local file paths won't work.


Architecture

Claude (Web/Desktop)
      β”‚  MCP protocol
      β–Ό
instagram-mcp server  (FastMCP 3.x, streamable-http or stdio)
      β”‚  HTTPS REST
      β–Ό
graph.instagram.com   (Instagram Login API v21.0)
      β”‚
      β–Ό
Your Instagram account

Why graph.instagram.com and not graph.facebook.com? This server uses the newer Instagram Login API which issues IGAA... tokens and routes through graph.instagram.com. The older Facebook Graph API approach required a linked Facebook Page and EAA... tokens. The new flow is simpler β€” just your Instagram account, no Facebook Page needed.


Troubleshooting

ErrorFix
Cannot parse access tokenToken expired or wrong type. Regenerate via the steps above.
code 100 on insightsInvalid metric name. Metrics differ between account vs media endpoints.
code 190Token expired. Run the refresh command.
Container processing failedVideo too long (>90s), wrong codec, or URL returns 404 after first fetch.
Empty DM listNo active 24h messaging window. Someone needs to DM you first.
Claude doesn't see toolsRestart Claude Desktop fully (tray icon β†’ Quit). Check logs at %APPDATA%\Claude\logs\.

Contributing

PRs welcome. If you add a new tool or fix a metric name mismatch, please:

  1. Test against a real Instagram account
  2. Update the tool table in this README
  3. Note which API permission the new tool requires

License

MIT β€” free to use, fork, and deploy commercially.


Built with FastMCP Β· Powered by Instagram Graph API

Related MCP Servers

06ketan/substack-ops

🐍 🏠 - Substack with zero AI API keys. 26 tools (posts, notes, comments, replies, reactions, restacks). Host LLM drafts via proposereply β†’ confirmreply tokens. SQLite dedup, JSONL audit, dry-run default. Install: uvx substack-ops mcp install cursor.

🌐 Social Media0 views
abhineet34/linkedin-mcp-server

πŸ“‡ 🏠 - Local LinkedIn MCP server for posting to LinkedIn from Claude. 9 tools β€” create/edit/delete posts (text, image, article), upload images, fetch profile, look up company pages, and check follower counts. Uses the official LinkedIn REST API with OAuth 2.0 (wmembersocial, OIDC).

🌐 Social Media0 views
anwerj/youtube-uploader-mcp

🏎️ ☁️ - AI‑powered YouTube uploaderβ€”no CLI, no YouTube Studio. Uploade videos directly from MCP clients with all AI capabilities.

🌐 Social Media0 views
arjun1194/insta-mcp

πŸ“‡ 🏠 - Instagram MCP server for analytics and insights. Get account overviews, posts, followers, following lists, post insights, and search for users, hashtags, or places.

🌐 Social Media0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 11:30:23 PM

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.