Skip to content
VS Code

GIMP Agent MCP for VS Code

io.github.sarutobisasuke8/gimp-agent-mcp

Edit in GIMP 3 with AI agents: live previews, grouped edits, pixel measurements and recipes.

client:VS Code transport:stdio runtime:pypi

Install GIMP Agent MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gimp-agent-allow-python",
      "description": "GIMP_AGENT_ALLOW_PYTHON",
      "password": true
    }
  ],
  "servers": {
    "gimp-agent-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "gimp-agent-mcp"
      ],
      "env": {
        "GIMP_AGENT_ALLOW_PYTHON": "${input:gimp-agent-allow-python}"
      }
    }
  }
}

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

GIMP Agent MCP in other clients