Skip to content
VS Code

imgflip mcp for VS Code

io.github.mariokernich/imgflip-mcp

Browse Imgflip meme templates and generate memes (caption images, AI memes) via the Imgflip API

client:VS Code transport:stdio runtime:npm

Install imgflip mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "imgflip-username",
      "description": "IMGFLIP_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "imgflip-password",
      "description": "IMGFLIP_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "imgflip-premium",
      "description": "IMGFLIP_PREMIUM",
      "password": true
    }
  ],
  "servers": {
    "imgflip-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "imgflip-mcp"
      ],
      "env": {
        "IMGFLIP_USERNAME": "${input:imgflip-username}",
        "IMGFLIP_PASSWORD": "${input:imgflip-password}",
        "IMGFLIP_PREMIUM": "${input:imgflip-premium}"
      }
    }
  }
}

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

imgflip mcp in other clients