Skip to content
VS Code

CAST Imaging MCP Server for VS Code

io.github.cast-extend/imaging-mcp-server

MCP server exposing CAST Imaging software architecture insights to AI agents

client:VS Code transport:stdio runtime:oci

Install CAST Imaging MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "host-control-panel",
      "description": "HOST_CONTROL_PANEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port-control-panel",
      "description": "PORT_CONTROL_PANEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "service-host",
      "description": "SERVICE_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-server-port",
      "description": "MCP_SERVER_PORT",
      "password": true
    }
  ],
  "servers": {
    "imaging-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/castimaging/imaging-mcp-server:3.0.4"
      ],
      "env": {
        "HOST_CONTROL_PANEL": "${input:host-control-panel}",
        "PORT_CONTROL_PANEL": "${input:port-control-panel}",
        "SERVICE_HOST": "${input:service-host}",
        "MCP_SERVER_PORT": "${input:mcp-server-port}"
      }
    }
  }
}

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

CAST Imaging MCP Server in other clients