Skip to content
VS Code

Cloudcraft MCP for VS Code

io.github.hypark5540/cloudcraft-mcp

Unofficial MCP server for reading and managing Cloudcraft architecture blueprints

client:VS Code transport:stdio runtime:npm

Install Cloudcraft MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cloudcraft-api-key",
      "description": "CLOUDCRAFT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-base-url",
      "description": "CLOUDCRAFT_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-log-level",
      "description": "CLOUDCRAFT_LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-export-dir",
      "description": "CLOUDCRAFT_EXPORT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-enable-writes",
      "description": "CLOUDCRAFT_ENABLE_WRITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-enable-deletes",
      "description": "CLOUDCRAFT_ENABLE_DELETES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cloudcraft-max-response-bytes",
      "description": "CLOUDCRAFT_MAX_RESPONSE_BYTES",
      "password": true
    }
  ],
  "servers": {
    "cloudcraft-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@hypark5540/cloudcraft-mcp"
      ],
      "env": {
        "CLOUDCRAFT_API_KEY": "${input:cloudcraft-api-key}",
        "CLOUDCRAFT_BASE_URL": "${input:cloudcraft-base-url}",
        "CLOUDCRAFT_LOG_LEVEL": "${input:cloudcraft-log-level}",
        "CLOUDCRAFT_EXPORT_DIR": "${input:cloudcraft-export-dir}",
        "CLOUDCRAFT_ENABLE_WRITES": "${input:cloudcraft-enable-writes}",
        "CLOUDCRAFT_ENABLE_DELETES": "${input:cloudcraft-enable-deletes}",
        "CLOUDCRAFT_MAX_RESPONSE_BYTES": "${input:cloudcraft-max-response-bytes}"
      }
    }
  }
}

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

Cloudcraft MCP in other clients