Skip to content
VS Code

eds mcp server for VS Code

io.github.focusgts/eds-mcp-server

41 tools for Adobe Edge Delivery Services: read, audit, track, monitor, fix, publish, undo — safely.

client:VS Code transport:stdio runtime:npm

Install eds mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "eds-owner",
      "description": "EDS_OWNER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-repo",
      "description": "EDS_REPO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-ref",
      "description": "EDS_REF",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-api-key",
      "description": "EDS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-domain-key",
      "description": "EDS_DOMAIN_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-da-token",
      "description": "EDS_DA_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-da-org",
      "description": "EDS_DA_ORG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "eds-da-repo",
      "description": "EDS_DA_REPO",
      "password": true
    }
  ],
  "servers": {
    "eds-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@focusgts/eds-mcp-server"
      ],
      "env": {
        "EDS_OWNER": "${input:eds-owner}",
        "EDS_REPO": "${input:eds-repo}",
        "EDS_REF": "${input:eds-ref}",
        "EDS_API_KEY": "${input:eds-api-key}",
        "EDS_DOMAIN_KEY": "${input:eds-domain-key}",
        "EDS_DA_TOKEN": "${input:eds-da-token}",
        "EDS_DA_ORG": "${input:eds-da-org}",
        "EDS_DA_REPO": "${input:eds-da-repo}"
      }
    }
  }
}

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

eds mcp server in other clients