Skip to content
VS Code

instagram creator for VS Code

io.github.wmarceau/instagram-creator

Instagram automation: post images, Reels, carousels, Stories, analytics

client:VS Code transport:stdio runtime:pypi

Install instagram creator 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
    }
  ],
  "servers": {
    "instagram-creator": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "instagram-creator-mcp"
      ],
      "env": {
        "INSTAGRAM_ACCESS_TOKEN": "${input:instagram-access-token}",
        "INSTAGRAM_ACCOUNT_ID": "${input:instagram-account-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 creator in other clients