Skip to content
VS Code

instagram mcp for VS Code

io.github.adelaidasofia/instagram-mcp

Official, multi-account Instagram Graph API MCP: read, publish, analytics, comments, DMs.

client:VS Code transport:stdio runtime:pypi

Install instagram mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "instagram-mcp-access-token",
      "description": "INSTAGRAM_MCP_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "instagram-mcp-ig-user-id",
      "description": "INSTAGRAM_MCP_IG_USER_ID",
      "password": true
    }
  ],
  "servers": {
    "instagram-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "adelaidasofia-instagram-mcp"
      ],
      "env": {
        "INSTAGRAM_MCP_ACCESS_TOKEN": "${input:instagram-mcp-access-token}",
        "INSTAGRAM_MCP_IG_USER_ID": "${input:instagram-mcp-ig-user-id}"
      }
    }
  }
}

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