Skip to content
VS Code

mograph mcp for VS Code

io.github.victhor-wpp/mograph-mcp

Drive Adobe Illustrator and After Effects, and move artwork between them as editable shape layers.

client:VS Code transport:stdio runtime:pypi

Install mograph mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mograph-tools",
      "description": "MOGRAPH_TOOLS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mograph-ws-port",
      "description": "MOGRAPH_WS_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mograph-allow-raw-script",
      "description": "MOGRAPH_ALLOW_RAW_SCRIPT",
      "password": true
    }
  ],
  "servers": {
    "mograph-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mograph-mcp"
      ],
      "env": {
        "MOGRAPH_TOOLS": "${input:mograph-tools}",
        "MOGRAPH_WS_PORT": "${input:mograph-ws-port}",
        "MOGRAPH_ALLOW_RAW_SCRIPT": "${input:mograph-allow-raw-script}"
      }
    }
  }
}

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

mograph mcp in other clients