Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’
eds-mcp-server logo

eds-mcp-server

Focus-GTS/eds-mcp-server
0 starsv0.2.3STDIORegistry activeApache-2.0Updated 2026-06-15Community

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

claude mcp add eds -- npx -y @focusgts/eds-mcp-server

Summary

Focus-GTS/eds-mcp-server MCP server](https://glama.ai/mcp/servers/Focus-GTS/eds-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/Focus-GTS/eds-mcp-server) πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - Adobe Edge Delivery Services (AEM EDS) management with 20 tools for...

Connect from your MCP client

One-click install

Add this server to your editor with a single click. Fill in any required credentials afterward.

Claude Code

Run this once and Claude Code registers the server for you:

claude mcp add eds -- npx -y @focusgts/eds-mcp-server

Claude Desktop

Add this to claude_desktop_config.json under Settings β†’ Developer β†’ Edit Config:

{
  "mcpServers": {
    "eds": {
      "command": "npx",
      "args": [
        "-y",
        "@focusgts/eds-mcp-server"
      ],
      "env": {
        "EDS_OWNER": "<EDS_OWNER>",
        "EDS_REPO": "<EDS_REPO>",
        "EDS_REF": "<EDS_REF>",
        "EDS_API_KEY": "<EDS_API_KEY>",
        "EDS_DOMAIN_KEY": "<EDS_DOMAIN_KEY>"
      }
    }
  }
}

Cursor

Add this to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for all projects):

{
  "mcpServers": {
    "eds": {
      "command": "npx",
      "args": [
        "-y",
        "@focusgts/eds-mcp-server"
      ],
      "env": {
        "EDS_OWNER": "<EDS_OWNER>",
        "EDS_REPO": "<EDS_REPO>",
        "EDS_REF": "<EDS_REF>",
        "EDS_API_KEY": "<EDS_API_KEY>",
        "EDS_DOMAIN_KEY": "<EDS_DOMAIN_KEY>"
      }
    }
  }
}

Cline and other MCP clients

Most MCP clients accept the standard mcpServers JSON block:

{
  "mcpServers": {
    "eds": {
      "command": "npx",
      "args": [
        "-y",
        "@focusgts/eds-mcp-server"
      ],
      "env": {
        "EDS_OWNER": "<EDS_OWNER>",
        "EDS_REPO": "<EDS_REPO>",
        "EDS_REF": "<EDS_REF>",
        "EDS_API_KEY": "<EDS_API_KEY>",
        "EDS_DOMAIN_KEY": "<EDS_DOMAIN_KEY>"
      }
    }
  }
}

Codex CLI

Register the server with OpenAI's Codex CLI β€” run this once, or add the equivalent block to ~/.codex/config.toml:

codex mcp add eds --env EDS_OWNER=<EDS_OWNER> --env EDS_REPO=<EDS_REPO> --env EDS_REF=<EDS_REF> --env EDS_API_KEY=<EDS_API_KEY> --env EDS_DOMAIN_KEY=<EDS_DOMAIN_KEY> -- npx -y @focusgts/eds-mcp-server

# or add to ~/.codex/config.toml:
[mcp_servers.eds]
command = "npx"
args = ["-y", "@focusgts/eds-mcp-server"]
[mcp_servers.eds.env]
EDS_OWNER = "<EDS_OWNER>"
EDS_REPO = "<EDS_REPO>"
EDS_REF = "<EDS_REF>"
EDS_API_KEY = "<EDS_API_KEY>"
EDS_DOMAIN_KEY = "<EDS_DOMAIN_KEY>"

OpenClaw

OpenClaw reads MCP servers from the mcp.servers section of ~/.openclaw/openclaw.json (managed via `openclaw mcp add` or the mcporter skill):

{
  "mcp": {
    "servers": {
      "eds": {
        "command": "npx",
        "args": [
          "-y",
          "@focusgts/eds-mcp-server"
        ],
        "env": {
          "EDS_OWNER": "<EDS_OWNER>",
          "EDS_REPO": "<EDS_REPO>",
          "EDS_REF": "<EDS_REF>",
          "EDS_API_KEY": "<EDS_API_KEY>",
          "EDS_DOMAIN_KEY": "<EDS_DOMAIN_KEY>"
        }
      }
    }
  }
}

Replace the <PLACEHOLDER> values with your own credentials β€” see the configuration table below.

Configuration

eds-mcp-server reads the following environment variables:

VariableRequired
EDS_OWNERRequired
EDS_REPORequired
EDS_REFOptional
EDS_API_KEYOptional
EDS_DOMAIN_KEYOptional

README.md

<div align="center">

!EDS MCP Server

![npm](https://www.npmjs.com/package/@focusgts/eds-mcp-server) ![installs](https://www.npmjs.com/package/@focusgts/eds-mcp-server) ![MCP Registry](https://registry.modelcontextprotocol.io) ![awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) ![license](LICENSE)

Let an AI agent run your Adobe Edge Delivery site.

20 tools. No extra dependencies beyond the MCP SDK. Works with any EDS site. The first MCP server purpose-built for Edge Delivery Services.

!Ask your agent

</div>

---

⚑ Do it in three lines

claude mcp add eds -e EDS_OWNER=your-org -e EDS_REPO=your-site -- npx @focusgts/eds-mcp-server

Then just ask your agent:

"Preview and publish the homepage." "What are the Core Web Vitals across the site?" "Find every page about pricing and list the ones missing a description."

That's it β€” no local AEM, no scripts, no glue code.

---

🧠 How it works

flowchart LR
  A["AI agent<br/>(Claude Code Β· Cursor Β· Copilot)"] -- MCP / stdio --> B["eds-mcp-server<br/>20 tools"]
  B --> C["Admin API<br/>admin.hlx.page"]
  B --> D["Content API<br/>*.aem.live"]
  B --> E["RUM / OpTel<br/>Core Web Vitals"]
  C --> F["Your EDS site"]
  D --> F
  E --> F

The agent calls tools; the server talks to the live EDS infrastructure. Read-only tools (content, sitemap, metadata) need no credentials at all.

---

πŸ”‘ One-click sign-in

No more pasting a fresh admin token every day:

sequenceDiagram
  participant You
  participant CLI as eds-mcp-server login
  participant Adobe as admin.hlx.page
  You->>CLI: npx @focusgts/eds-mcp-server login
  CLI->>Adobe: open browser (client_id=aem-cli)
  You->>Adobe: sign in & approve
  Adobe-->>CLI: siteToken β†’ localhost callback
  CLI-->>You: cached ~/.aem/auth-token.json (reused automatically)

Use Chrome or Firefox β€” Safari blocks the local callback (same as Adobe's AEM CLI). EDS_API_KEY works as the CI / fallback path.

---

πŸ› οΈ The 20 tools

<table> <tr><td valign="top" width="33%">

Publishing

  • eds_preview_page
  • eds_publish_page
  • eds_unpublish_page
  • eds_preview_and_publish
  • eds_get_status
  • eds_purge_cache
  • eds_bulk_preview
  • eds_bulk_publish

</td><td valign="top" width="33%">

Content

  • eds_get_page
  • eds_list_pages
  • eds_search_pages
  • eds_get_metadata
  • eds_get_sitemap
  • eds_get_redirects

</td><td valign="top" width="33%">

Analytics & config

  • eds_get_cwv
  • eds_get_404s
  • eds_get_experiments
  • eds_get_config
  • eds_get_logs
  • eds_get_api_keys

</td></tr> </table>

---

πŸ”Œ Add it to your tool

<details open> <summary><b>Claude Code</b> β€” one command</summary>

claude mcp add eds -e EDS_OWNER=your-org -e EDS_REPO=your-site -- npx @focusgts/eds-mcp-server

</details>

<details> <summary><b>Cursor</b> β€” <code>.cursor/mcp.json</code></summary>

{
  "mcpServers": {
    "eds": {
      "command": "npx",
      "args": ["@focusgts/eds-mcp-server"],
      "env": { "EDS_OWNER": "your-org", "EDS_REPO": "your-site" }
    }
  }
}

</details>

<details> <summary><b>VS Code (GitHub Copilot)</b> β€” <code>.vscode/mcp.json</code></summary>

{
  "servers": {
    "eds": {
      "command": "npx",
      "args": ["@focusgts/eds-mcp-server"],
      "env": { "EDS_OWNER": "your-org", "EDS_REPO": "your-site" }
    }
  }
}

</details>

---

βš™οΈ Configuration

| Variable | Required | Description | |----------|----------|-------------| | EDS_OWNER | Yes | GitHub org/user that owns the EDS site repo | | EDS_REPO | Yes | GitHub repository name | | EDS_REF | No | Git branch (default: main) | | EDS_API_KEY | No | Admin token (see Authentication). Browser login is the alternative. | | EDS_DOMAIN_KEY | No | OpTel domain key for analytics queries (CWV, 404s, experiments) |

Read-only tools (content, sitemap, metadata) need no keys. Write tools (preview, publish, cache) need an admin token. Analytics tools need EDS_DOMAIN_KEY.

---

πŸ” Authentication

Admin operations require an EDS Admin token. Two ways to provide one.

Browser sign-in (recommended for interactive use)

EDS_OWNER=your-org EDS_REPO=your-site npx @focusgts/eds-mcp-server login

Opens your browser to Adobe's admin.hlx.page login (the same flow as the AEM CLI). The admin site token caches at ~/.aem/auth-token.json (mode 0600, ~24h) and is reused automatically. Use Chrome or Firefox β€” Safari blocks the local callback.

EDS_API_KEY (CI / automation, and the fallback) β€” always takes precedence when set.

EDS_OWNER=your-org EDS_REPO=your-site EDS_API_KEY=<your-admin-token> npx @focusgts/eds-mcp-server

To get a token (per Adobe's API key docs): sign in at https://admin.hlx.page/login, then copy the auth_token cookie value from DevTools β€” or copy the x-auth-token header from an authenticated AEM Sidekick request. For a durable credential, configure a site API key.

---

πŸ—οΈ Architecture

Built following Adobe's MCP conventions (derived from adobe-rnd/da-mcp):

  • TypeScript + @modelcontextprotocol/sdk + zod, stateless per request
  • Tool naming: eds_{verb}_{noun} Β· stdio transport
  • Native fetch() (Node 18+) β€” no HTTP dependencies
git clone https://github.com/Focus-GTS/eds-mcp-server.git
cd eds-mcp-server && npm install && npm run build && npm test

---

🧩 Part of the FocusGTS EDS suite

| | | |---|---| | eds-content-ops-skills | AI skills for EDS content ops β€” first third-party contributor merged into Adobe's official skills repo | | eds-ops | CLI + GitHub Action for automated site grading and PR gating | | EDS Score | Free browser-based site health analyzer |

---

<div align="center">

Built by FocusGTS β€” Adobe Silver Solution Partner Β· Apache-2.0 <br/>Not affiliated with or endorsed by Adobe Inc.

</div>

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Other servers.