Instagram MCP Server
Enables AI agents to control Instagram accounts programmatically, supporting profile management, media interaction, direct messaging, and follower management.
README
Instagram MCP Server 📸
The Instagram MCP Server is a comprehensive Model Context Protocol (MCP) server that allows you to control your Instagram account programmatically and via AI agents. Built with TypeScript and the powerful instagram-private-api library, it provides a wide range of tools for profile management, interacting with media, sending direct messages, and managing followers.
🌟 Features & Available Tools
The server provides the following tools for use via MCP clients:
👤 Profile & Search
ig_get_profile: Fetch comprehensive profile data for any user by their username.ig_search_users: Search for Instagram users using keywords.
🖼️ Feeds
ig_get_timeline: Get the recent media feed from your personal timeline.ig_get_user_feed: Get the media feed grid for a specific user.
📸 Media Interaction
ig_publish_photo: Publish a new photo to your feed (Requires the absolute local path to the image and a text caption).ig_like_media: Like a specific post using its Media ID.ig_comment_media: Add a text comment to a specific post.
💬 Direct Messages
ig_get_inbox: Fetch the latest conversations and messages from your direct inbox.ig_send_message: Send a direct message to a specific user using their User ID (PK).
👥 Relationships
ig_follow_user: Send a follow request to a user.ig_unfollow_user: Unfollow a user.ig_get_followers: Extract the list of followers for a specific account.ig_get_following: Extract the list of accounts that a specific user is following.
⚙️ Prerequisites
- Node.js: Version 18 or newer.
- npm or yarn for package management.
- An active Instagram account (A dedicated test/bot account is highly recommended to avoid getting your primary account banned).
🚀 Installation & Setup
-
Access the Project Directory: Make sure you are in the root directory of the project.
-
Install Dependencies:
npm install -
Set Up Environment Variables: Create a
.envfile in the root directory and add your Instagram login credentials:IG_USERNAME=your_instagram_username IG_PASSWORD=your_instagram_password
🏃♂️ Running the Server
You have multiple options to run the server depending on your environment:
1. Development Mode
Uses ts-node to run TypeScript files directly without a build step:
npm run dev
2. Production Mode
Compiles the project to JavaScript first, then runs it:
npm run build
npm start
3. Using Docker 🐳
The project includes a Dockerfile ready to build and run the container easily:
# Build the image
docker build -t instagram-mcp-server .
# Run the container with environment variables
docker run -e IG_USERNAME=your_username -e IG_PASSWORD=your_password -i instagram-mcp-server
🔌 Client Integration (MCP)
Example: Connecting to Claude Desktop
To link this server with the Claude Desktop app (or any MCP client), edit your client configuration file. (On Windows, Claude's config is usually at C:\Users\Username\AppData\Roaming\Claude\claude_desktop_config.json):
{
"mcpServers": {
"instagram": {
"command": "node",
"args": [
"F:\\MCP_Server\\Instagram_MCP_server\\build\\index.js"
],
"env": {
"IG_USERNAME": "your_username",
"IG_PASSWORD": "your_password"
}
}
}
}
Make sure to build the project (npm run build) before referencing the build/index.js path.
⚠️ Important Warnings
- Bans & Rate Limits:
This project uses
instagram-private-apiwhich relies on unofficial APIs simulating the mobile app. Excessive use (e.g., rapid consecutive likes, following many accounts in a short time) will almost certainly lead to your account being restricted or permanently banned (Action Block / Shadowban). - Use With Caution: It is strongly recommended to interact gradually and implement time delays between requests if you plan to automate processes.
- Two-Factor Authentication (2FA): Currently, the server supports simple login. If your account has 2FA enabled, the login process might fail. It's recommended to disable it on your test account or implement programmatic handling for 2FA challenges.
📝 License
Licensed under the ISC License.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.