Skip to content
VS Code

Nutanix Prism Central for VS Code

io.github.wyre-ai/nutanix-mcp

Multitenant Streamable HTTP bridge over Nutanix's official v4 API MCP server (Prism Central).

client:VS Code transport:stdio runtime:oci

Install Nutanix Prism Central in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "idle-evict-ms",
      "description": "IDLE_EVICT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "spawn-timeout-ms",
      "description": "SPAWN_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "nutanix-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/nutanix-mcp:v1.0.6"
      ],
      "env": {
        "PORT": "${input:port}",
        "IDLE_EVICT_MS": "${input:idle-evict-ms}",
        "SPAWN_TIMEOUT_MS": "${input:spawn-timeout-ms}"
      }
    }
  }
}

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

Nutanix Prism Central in other clients