Provides integration with Instagram, enabling interaction with Instagram's platform through the Model Context Protocol.
Insta MCP Server
⚠️ This project is currently under active development. Features may change, and the API is not yet stable. Use at your own risk.
MCP (Model Context Protocol) server for Instagram integration.
Quick Start from GitHub
Option 1: Clone and Run with npx (Recommended)
# Clone the repository
git clone https://github.com/anand-kamble/mcp-instagram.git
cd mcp-instagram
# Install dependencies
npm install
# Run with npx (automatically builds if needed)
npx mcp-instagram
Option 2: One-liner with npx (after cloning)
git clone https://github.com/anand-kamble/mcp-instagram.git && \
cd mcp-instagram && \
npm install && \
npx mcp-instagram
Option 3: Direct npx from GitHub (if published to npm)
Once published to npm, you can run directly:
npx mcp-instagram
Setup
Install dependencies:
npm install
Build the project:
npm run build
Run the server:
npm start
Or using npx (from the project directory):
npx mcp-instagram
Or using npx with a local path:
npx /path/to/mcp-instagram
Development
Watch mode for development:
npm run dev