EDS MCP Server
EDS MCP Server
MCP server for Adobe Edge Delivery Services. Gives AI agents (Claude Code, Cursor, GitHub Copilot) programmatic access to EDS operations — preview, publish, read content, query performance metrics, and manage site configuration.
20 tools. Zero dependencies beyond the MCP SDK. Works with any EDS site.
Quick Start
Claude Code
claude mcp add eds -e EDS_OWNER=your-org -e EDS_REPO=your-site -- npx @focusgts/eds-mcp-serverCursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"eds": {
"command": "npx",
"args": ["@focusgts/eds-mcp-server"],
"env": {
"EDS_OWNER": "your-org",
"EDS_REPO": "your-site"
}
}
}
}VS Code (GitHub Copilot)
Add to .vscode/mcp.json:
{
"servers": {
"eds": {
"command": "npx",
"args": ["@focusgts/eds-mcp-server"],
"env": {
"EDS_OWNER": "your-org",
"EDS_REPO": "your-site"
}
}
}
}Related MCP server: AEM MCP Server
Configuration
Variable | Required | Description |
| Yes | GitHub org/user that owns the EDS site repo |
| Yes | GitHub repository name |
| No | Git branch (default: |
| No | Admin API key for preview/publish/cache operations |
| No | OpTel domain key for analytics queries |
Read-only tools (content, sitemap, metadata, query index) work with no keys at all. Write tools (preview, publish, cache purge) need EDS_API_KEY. Analytics tools (CWV, 404s, experiments) need EDS_DOMAIN_KEY.
Tools
Publishing Operations
Tool | Description |
| Trigger preview for a page so content source changes appear on |
| Publish a page from preview to the live production domain ( |
| Remove a page from the live site |
| Preview and publish a page in a single atomic operation |
| Get preview, live, and code-bus status for a resource |
| Purge CDN cache for a page path |
Bulk Operations
Tool | Description |
| Preview multiple pages in one call (up to 100 paths) |
| Publish multiple pages in one call (up to 100 paths) |
Content Reading
Tool | Description |
| Fetch rendered page content via |
| Query the site's page index with pagination |
| Search pages by keyword across titles, descriptions, and paths |
| Fetch the site metadata sheet |
| Fetch and parse |
| Fetch and parse the redirects spreadsheet |
Analytics (OpTel)
Tool | Description |
| Core Web Vitals (LCP, CLS, INP, TTFB) by page |
| 404 error report with hit counts and referrers |
| A/B experiment results with conversion rates |
Configuration
Tool | Description |
| Read site configuration |
| Project activity log (preview, publish, config actions) |
| List API keys configured for the site |
Examples
Once connected, ask your AI agent:
"What pages are on this EDS site?" -> eds_list_pages
"Find all pages about pricing" -> eds_search_pages
"Show me the content of the about page" -> eds_get_page
"What are the Core Web Vitals for this site?" -> eds_get_cwv
"Preview and publish the homepage" -> eds_preview_and_publish
"Publish all blog posts" -> eds_bulk_publish
"Are there any 404 errors on the site?" -> eds_get_404s
"Show me the redirect rules" -> eds_get_redirects
"Show me the site configuration" -> eds_get_configHow It Works
This is a local MCP server that runs on your machine via stdio. When you connect it to Claude Code, Cursor, or another MCP-compatible AI tool, the agent can call these tools to interact with your EDS site's real APIs:
Admin API (
admin.hlx.page) for preview, publish, cache, config, and logsContent API (
*.aem.live) for page content, query index, metadata, and sitemapOpTel API (
rum.hlx.page) for Core Web Vitals, 404 tracking, and experiment data
No sandbox or local AEM instance needed. The server talks directly to the live EDS infrastructure.
Architecture
Built following Adobe's MCP server conventions (derived from adobe-rnd/da-mcp):
TypeScript +
@modelcontextprotocol/sdk+zodStateless per-request
Tool naming:
eds_{verb}_{noun}Stdio transport for local use
Native
fetch()(Node 18+, zero HTTP dependencies)
Development
git clone https://github.com/focusgts/eds-mcp-server.git
cd eds-mcp-server
npm install
npm run build
npm testRelated Tools
Tool | What it does |
43 AI skills for EDS content ops — auditing, SEO, accessibility, blocks, migration, and more. Pair with this MCP server for automated workflows. | |
CLI health scanner and GitHub Action for automated site grading and PR gating. | |
Free browser-based site health analyzer for EDS sites. |
About
Built by FocusGTS — Adobe Silver Solution Partner specializing in Edge Delivery Services.
License
Apache-2.0
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Focus-GTS/eds-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server