Skip to content
VS Code

mcp oci for VS Code

io.github.dockndevai/mcp-oci

Oracle Cloud discovery + Terraform generation for AI agents — read-only, secret-safe.

client:VS Code transport:stdio runtime:npm

Install mcp oci in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "oci-profile",
      "description": "OCI_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "oci-mode",
      "description": "OCI_MODE",
      "password": true
    }
  ],
  "servers": {
    "mcp-oci": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dockndevai/mcp-oci"
      ],
      "env": {
        "OCI_PROFILE": "${input:oci-profile}",
        "OCI_MODE": "${input:oci-mode}"
      }
    }
  }
}

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

mcp oci in other clients