Skip to content
VS Code

instagram mcp for VS Code

io.github.mcpware/instagram-mcp

Instagram MCP — 23 tools for Instagram Graph API: posts, DMs, stories, reels, analytics.

client:VS Code transport:stdio runtime:npm

Install instagram mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "instagram-access-token",
      "description": "INSTAGRAM_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "instagram-account-id",
      "description": "INSTAGRAM_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "instagram-api-version",
      "description": "INSTAGRAM_API_VERSION",
      "password": true
    }
  ],
  "servers": {
    "instagram-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mcpware/instagram-mcp"
      ],
      "env": {
        "INSTAGRAM_ACCESS_TOKEN": "${input:instagram-access-token}",
        "INSTAGRAM_ACCOUNT_ID": "${input:instagram-account-id}",
        "INSTAGRAM_API_VERSION": "${input:instagram-api-version}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

instagram mcp in other clients