Skip to content
VS Code

dolphin mcp pilot for VS Code

io.github.iflytek/dolphin-mcp-pilot

AI agent interface to Apache DolphinScheduler: 58 MCP tools for workflow orchestration & data ops.

client:VS Code transport:stdio runtime:oci

Install dolphin mcp pilot in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ds-url",
      "description": "DS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ds-token",
      "description": "DS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ds-user",
      "description": "DS_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ds-password",
      "description": "DS_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ds-tenant-code",
      "description": "DS_TENANT_CODE",
      "password": true
    }
  ],
  "servers": {
    "dolphin-mcp-pilot": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/iflytek/dolphin-mcp-pilot:0.3.1"
      ],
      "env": {
        "DS_URL": "${input:ds-url}",
        "DS_TOKEN": "${input:ds-token}",
        "DS_USER": "${input:ds-user}",
        "DS_PASSWORD": "${input:ds-password}",
        "DS_TENANT_CODE": "${input:ds-tenant-code}"
      }
    }
  }
}

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

dolphin mcp pilot in other clients