Skip to content
VS Code

IONOS CLOUD MCP Server for VS Code

io.github.ionos-cloud/ionoscloud-mcp

Inspect and manage IONOS CLOUD infrastructure via MCP. Writes are opt-in and off by default.

client:VS Code transport:stdio runtime:oci

Install IONOS CLOUD MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ionos-token",
      "description": "IONOS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ionos-s3-access-key",
      "description": "IONOS_S3_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ionos-s3-secret-key",
      "description": "IONOS_S3_SECRET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ionos-mcp-load-mode",
      "description": "IONOS_MCP_LOAD_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ionos-mcp-tool-scope",
      "description": "IONOS_MCP_TOOL_SCOPE",
      "password": true
    }
  ],
  "servers": {
    "ionoscloud-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ionos-cloud/ionoscloud-mcp:1.1.1"
      ],
      "env": {
        "IONOS_TOKEN": "${input:ionos-token}",
        "IONOS_S3_ACCESS_KEY": "${input:ionos-s3-access-key}",
        "IONOS_S3_SECRET_KEY": "${input:ionos-s3-secret-key}",
        "IONOS_MCP_LOAD_MODE": "${input:ionos-mcp-load-mode}",
        "IONOS_MCP_TOOL_SCOPE": "${input:ionos-mcp-tool-scope}"
      }
    }
  }
}

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

IONOS CLOUD MCP Server in other clients