# Does Instagram have an MCP server?

**Sort of — Community only.** Instagram does not maintain an official MCP server. Community-built servers exist.

> Meta's official Ads MCP touches Instagram only for ads — nothing official for Instagram content or DMs.

## Facts

- Verdict: Community only (Sort of)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [trypeggy/instagram_dm_mcp](https://github.com/trypeggy/instagram_dm_mcp) — ★ 176, last push 2025-08-13, MIT
- Maintainer: Gala Labs
- Language: Python
- Category: [Social Media](https://mcpyet.com/category/social-media/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> Instagram Direct messages MCP
> — how [trypeggy/instagram_dm_mcp](https://github.com/trypeggy/instagram_dm_mcp) describes itself

## The receipts

- **Top community server:** [trypeggy/instagram_dm_mcp](https://github.com/trypeggy/instagram_dm_mcp) — ★ 176, pushed 2025-08-13, MIT (stale)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add instagram -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "instagram": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "instagram": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "instagram": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## Before you connect this

A community server is unaudited third-party code that will hold your Instagram API credentials and see whatever data they unlock. Independent research puts SSRF vulnerabilities in roughly a third of public MCP servers, and 41% ship with no authentication at all.

- Read the source before running it — especially any network calls it makes.
- Check who maintains it and whether commits are recent (this one: last push 2025-08-13).
- Issue a scoped, revocable API key rather than an account-wide token.
- Prefer read-only credentials until you trust it with writes.

## How we know

No dedicated official Instagram MCP. Instagram-native community ecosystem is weak: trypeggy/instagram_dm_mcp (~176 stars, stale). COMMUNITY-ONLY confirmed.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Social Media

- [LinkedIn](https://mcpyet.com/mcp/linkedin.md) — Community only (Sort of)
- [Buffer](https://mcpyet.com/mcp/buffer.md) — Official (Yes)
- [Facebook](https://mcpyet.com/mcp/facebook.md) — Official (Yes)
- [YouTube](https://mcpyet.com/mcp/youtube.md) — Community only (Sort of)
- [TikTok](https://mcpyet.com/mcp/tiktok.md) — Official (Yes)
- [Reddit](https://mcpyet.com/mcp/reddit.md) — Community only (Sort of)

---

Source: https://mcpyet.com/mcp/instagram/ — data refreshed 2026-08-11
