instagram-mcp

instagram-mcp

Provides Instagram analytics, media downloads, and search capabilities through an MCP interface for use with Claude and other MCP clients.

Category
Visit Server

README

Instagram CLI

Terminal-first Instagram analytics, downloads, and MCP tools powered by HikerAPI, OpenRouter, and FastMCP.

 ___ _   _ ____ _____  _    ____ ____      _    __  __      ____ _     ___
|_ _| \ | / ___|_   _|/ \  / ___|  _ \    / \  |  \/  |    / ___| |   |_ _|
 | ||  \| \___ \ | | / _ \| |  _| |_) |  / _ \ | |\/| |   | |   | |    | |
 | || |\  |___) || |/ ___ \ |_| |  _ <  / ___ \| |  | |   | |___| |___ | |
|___|_| \_|____/ |_/_/   \_\____|_| \_\/_/   \_\_|  |_|    \____|_____|___|
                           INSTAGRAM-CLI by @lupikovoleg

What It Does

  • Search Instagram by topic with adaptive deep pagination, including multilingual reel and media discovery
  • Filter search results by freshness, including today and last N days
  • Fetch profile stats, reel stats, up to 100 root comments per media, likers, followers, following, stories, and highlights
  • Analyze profile publications from the main grid:
    • reels
    • posts
    • carousels
  • Inspect pinned posts, tagged publications, comment replies, tagged users, and media insight metrics
  • Discover content and entities through:
    • hashtags
    • places
    • music tracks
    • suggested related profiles
  • Check HikerAPI balance and request-rate data from the CLI or MCP
  • Download Instagram content locally:
    • reels and posts
    • audio tracks
    • active stories
    • highlights
  • Export collected results to csv or json
  • Support natural-language interaction with tool calling in the CLI
  • Handle chained workflows such as:
    • search -> inspect -> rank -> export
    • open a profile -> analyze publications -> download content
    • fetch a reel -> inspect comments or likers -> export the result
  • Expose the same capability layer through a local MCP server for Claude and other MCP clients

Requirements

  • macOS or Linux
  • Python 3.10+
  • HIKERAPI_KEY or HIKERAPI_TOKEN
  • OPENROUTER_API_KEY for the interactive CLI agent

Installation

cd /path/to/instagram-cli
./install.sh

This installs two commands:

  • instagram for the interactive CLI
  • instagram-mcp for the local MCP server

Install as a Python dependency in another project:

pip install git+https://github.com/lupikovoleg/instagram-cli.git

First Run

The CLI uses its own .env file.

  • default path: /path/to/instagram-cli/.env
  • override path: INSTAGRAM_CLI_ENV_FILE=/path/to/custom.env

If required keys are missing, the CLI bootstrap asks for them and writes the local .env.

Quick Start

Start the CLI:

instagram

Typical commands:

instagram> profile lupikovoleg
instagram> search portugal creators
instagram> search reels about dubai attack
instagram> publications lupikovoleg 10 30 all
instagram> comments https://www.instagram.com/reel/XXXXXXXXXXX/ 100
instagram> download media https://www.instagram.com/reel/XXXXXXXXXXX/
instagram> export csv latest-results
instagram> how many followers does @lupikovoleg have?
instagram> find today's reels about an attack on Dubai
instagram> find 100 reels about Dubai real estate

Start the MCP server:

instagram-mcp

Use it as a Python library:

from instagram_cli import InstagramClient

client = InstagramClient.from_env(env_file="/path/to/instagram-cli/.env")
profile = client.get_profile_stats(target="lupikovoleg")

Custom agent example:

python /path/to/instagram-cli/examples/custom_agent.py \
  --env-file /path/to/instagram-cli/.env \
  "How many followers does @lupikovoleg have?"

MCP Setup

Claude Code:

claude mcp add instagram-cli -- /path/to/instagram-cli/.venv/bin/instagram-mcp

Claude Desktop config file on macOS:

~/Library/Application Support/Claude/claude_desktop_config.json

Example:

{
  "mcpServers": {
    "instagram-cli": {
      "command": "/path/to/instagram-cli/.venv/bin/instagram-mcp",
      "args": [],
      "env": {
        "INSTAGRAM_CLI_ENV_FILE": "/path/to/instagram-cli/.env"
      }
    }
  }
}

Documentation

Project Notes

  • CLI mode uses OpenRouter for natural-language tool selection and query expansion.
  • Search is adaptive by default: if limit is omitted, the tool can paginate internally up to 50 final results; explicit one-shot search requests are capped at 100.
  • High-level comment collection returns root comments only and can paginate internally up to 100 comments per media.
  • MCP mode does not use OpenRouter internally for search. MCP clients can pass query_variants when richer multilingual retrieval is needed.
  • Python library mode uses the same deterministic InstagramOps layer as the CLI and MCP server, exposed through InstagramClient.
  • Expensive follower and liker analysis is intentionally capped by default to avoid burning HikerAPI credits.
  • Some tools are exact page reads, while sampled ranking tools explicitly mark themselves as approximate.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured