What is the CAST Imaging MCP Server MCP server?
MCP server exposing CAST Imaging software architecture insights to AI agents
How to install CAST Imaging MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
HOST_CONTROL_PANELrequiredCAST Imaging Control Panel hostname or IP
PORT_CONTROL_PANELCAST Imaging Control Panel port
SERVICE_HOSTrequiredHostname or IP of the machine running the MCP server
MCP_SERVER_PORTInternal port the MCP server container listens on
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"imaging-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/castimaging/imaging-mcp-server:3.0.3",
"-p",
"{MCP_SERVER_PORT}:8282",
"-e",
"HOST_CONTROL_PANEL={HOST_CONTROL_PANEL}",
"-e",
"PORT_CONTROL_PANEL={PORT_CONTROL_PANEL}",
"-e",
"SERVICE_HOST={SERVICE_HOST}"
],
"env": {
"HOST_CONTROL_PANEL": "<YOUR_HOST_CONTROL_PANEL>",
"PORT_CONTROL_PANEL": "<YOUR_PORT_CONTROL_PANEL>",
"SERVICE_HOST": "<YOUR_SERVICE_HOST>",
"MCP_SERVER_PORT": "<YOUR_MCP_SERVER_PORT>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"imaging-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/castimaging/imaging-mcp-server:3.0.3",
"-p",
"{MCP_SERVER_PORT}:8282",
"-e",
"HOST_CONTROL_PANEL={HOST_CONTROL_PANEL}",
"-e",
"PORT_CONTROL_PANEL={PORT_CONTROL_PANEL}",
"-e",
"SERVICE_HOST={SERVICE_HOST}"
],
"env": {
"HOST_CONTROL_PANEL": "<YOUR_HOST_CONTROL_PANEL>",
"PORT_CONTROL_PANEL": "<YOUR_PORT_CONTROL_PANEL>",
"SERVICE_HOST": "<YOUR_SERVICE_HOST>",
"MCP_SERVER_PORT": "<YOUR_MCP_SERVER_PORT>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"imaging-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/castimaging/imaging-mcp-server:3.0.3",
"-p",
"{MCP_SERVER_PORT}:8282",
"-e",
"HOST_CONTROL_PANEL={HOST_CONTROL_PANEL}",
"-e",
"PORT_CONTROL_PANEL={PORT_CONTROL_PANEL}",
"-e",
"SERVICE_HOST={SERVICE_HOST}"
],
"env": {
"HOST_CONTROL_PANEL": "<YOUR_HOST_CONTROL_PANEL>",
"PORT_CONTROL_PANEL": "<YOUR_PORT_CONTROL_PANEL>",
"SERVICE_HOST": "<YOUR_SERVICE_HOST>",
"MCP_SERVER_PORT": "<YOUR_MCP_SERVER_PORT>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"imaging-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/castimaging/imaging-mcp-server:3.0.3",
"-p",
"{MCP_SERVER_PORT}:8282",
"-e",
"HOST_CONTROL_PANEL={HOST_CONTROL_PANEL}",
"-e",
"PORT_CONTROL_PANEL={PORT_CONTROL_PANEL}",
"-e",
"SERVICE_HOST={SERVICE_HOST}"
],
"env": {
"HOST_CONTROL_PANEL": "<YOUR_HOST_CONTROL_PANEL>",
"PORT_CONTROL_PANEL": "<YOUR_PORT_CONTROL_PANEL>",
"SERVICE_HOST": "<YOUR_SERVICE_HOST>",
"MCP_SERVER_PORT": "<YOUR_MCP_SERVER_PORT>"
}
}
}
}Claude Code
claude mcp add imaging-mcp-server --env HOST_CONTROL_PANEL=<YOUR_HOST_CONTROL_PANEL> --env PORT_CONTROL_PANEL=<YOUR_PORT_CONTROL_PANEL> --env SERVICE_HOST=<YOUR_SERVICE_HOST> --env MCP_SERVER_PORT=<YOUR_MCP_SERVER_PORT> -- docker run -i --rm docker.io/castimaging/imaging-mcp-server:3.0.3 -p {MCP_SERVER_PORT}:8282 -e HOST_CONTROL_PANEL={HOST_CONTROL_PANEL} -e PORT_CONTROL_PANEL={PORT_CONTROL_PANEL} -e SERVICE_HOST={SERVICE_HOST}Related MCP servers
CAST Dashboard MCP server for compliance, quality, and technical debt insights for AI agents