eds-mcp-server
Integrates with Figma to fetch design data, enabling generation of AEM EDS blocks from Figma URLs or node IDs.
Searches Adobe Block Collection and Block Party repositories on GitHub to find existing block implementations and patterns.
Provides configuration tools for using Google Drive as a content source in AEM EDS projects, including fstab and other setup.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eds-mcp-serverScaffold a hero block with background image, heading, and CTA"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AEM Edge Delivery Services — MCP Server
A Model Context Protocol server that supercharges AEM EDS development in VS Code, Cursor, and any MCP-compatible IDE. No API keys needed — your IDE's own LLM uses these tools, resources, and prompts to generate EDS-compliant code.
What It Does
Category | Tools | Description |
Scaffolding |
| Generate complete block files (JS, CSS, README, test.html, sample content) |
| Generate Universal Editor component model/definition/filter JSON | |
| Step-by-step guide for new EDS projects (standard & repoless) | |
| Multimodal — turn a text description, design image, and/or Figma URL into an EDS block using Adobe's Content-Driven-Development workflow | |
Validation |
| Check JS, CSS, JSON model, and content against EDS standards |
| Analyze block code for performance issues and budget impact | |
Guidance |
| Show how authored content tables transform into DOM |
| Search block patterns and find existing implementations | |
| Search Adobe Block Collection & Block Party via GitHub API | |
| Generate configuration files (fstab, redirects, headers, etc.) | |
| Guidance for scripts.js, delayed.js, and lifecycle customization |
Plus 4 resources (coding standards, block guide, cheatsheet, Adobe EDS skills) and 3 prompt templates (new-block, fix-block, design-to-block).
Prompt Parameters
Prompt | Parameters |
|
|
|
|
|
|
Design → Block workflow
The generate_block_from_design tool and the design-to-block prompt integrate
Adobe's official EDS skills
(Content-Driven Development, analyze-and-plan, content-modeling, authoring-analysis,
building-blocks, UE component model, testing-blocks, code-review).
Provide any combination of:
Text — natural-language description of what the block should do
Image(s) — local paths or URLs of design screenshots/mockups (the IDE LLM analyzes them with vision)
Figma URL — a
figma.com/file/...orfigma.com/design/...link, optionally with?node-id=…. The tool emits a localcurlrecipe to pull node JSON + a 2× PNG export; your Figma token stays on your machine.
The tool returns: the CDD workflow outline, a vision-analysis prompt for the IDE LLM, the Figma-fetch recipe (if applicable), implementation patterns, a baseline scaffold (JS/CSS/README/test.html/sample-content), the UE component-model guidance, a testing matrix, and a self-review checklist.
Related MCP server: GenZ MCP Server
Quick Start
Cursor
Open Settings → Tools & Integrations → MCP Servers → Add and paste:
{
"mcpServers": {
"eds-dev": {
"command": "npx",
"args": ["-y", "@anthropic-eds/eds-mcp-server"]
}
}
}Or create .cursor/mcp.json in your project root with the same config.
VS Code
Create .vscode/mcp.json in your project:
{
"servers": {
"eds-dev": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic-eds/eds-mcp-server"]
}
}
}Then use GitHub Copilot Chat in Agent Mode (the @ button) to access the tools.
Local CLI Validator (New)
This project now includes an EDS block validator/linter CLI.
npm run build
npm run validate:blocks -- ./blocks
# or directly
node dist/cli.js ./blocks --strictOptions:
--jsonfor CI-friendly machine output--strictto fail on warnings--helpfor usage details
Claude Code
Add to your ~/.claude/mcp.json:
{
"mcpServers": {
"eds-dev": {
"command": "npx",
"args": ["-y", "@anthropic-eds/eds-mcp-server"]
}
}
}From Source (Development)
git clone https://github.com/your-org/eds-mcp-server.git
cd eds-mcp-server
npm install
npm run build
# Test with MCP Inspector
npm run inspect
# Opens browser at http://localhost:6274
# Add to IDE pointing to local build:
# "command": "node",
# "args": ["/path/to/eds-mcp-server/dist/index.js"]Usage Examples
Scaffold a new block
Ask your IDE's AI: "Create a hero block with a background image, heading, and CTA button"
The LLM will call scaffold_block and return all 5 files ready to copy into your project.
Validate existing code
Ask: "Validate my cards block" — paste your JS and CSS. The validate_block tool checks for scoping issues, missing exports, reserved class names, performance problems, and more.
Understand the DOM pipeline
Ask: "How does a 3-row, 2-column table become DOM in EDS?"
The explain_dom tool shows the exact HTML structure your decorate function receives.
Set up a new project
Ask: "Set up a new repoless EDS site with Google Drive and Universal Editor"
The scaffold_project tool returns a complete step-by-step guide.
Get configuration templates
Ask: "I need to set up redirects and custom headers"
The eds_config tool returns ready-to-use spreadsheet formats and configuration examples.
Check performance
Ask: "Is this block going to hurt my Lighthouse score?" — paste the code.
The check_performance tool estimates budget impact and flags render-blocking patterns.
Tool Reference
scaffold_block
Parameter | Type | Required | Default | Description |
| string | ✅ | Block name in kebab-case | |
| string | What the block does | ||
| string | Variant name (e.g. "dark") | ||
|
|
| CSS layout strategy | |
| boolean |
| Has image/video column | |
| boolean |
| Needs event handlers | |
| array | Universal Editor field definitions (name, type, label) |
scaffold_model
Parameter | Type | Required | Description |
| string | ✅ | Block name in kebab-case |
| string | Human-readable block title for the editor | |
| string | Block group/category for editor UI organization | |
| array | ✅ | Block fields (name, type, label, required) |
| string[] | Component IDs allowed as children (for container blocks) |
scaffold_project
Parameter | Type | Required | Default | Description |
| enum | ✅ |
| |
| string | ✅ | Project/site name | |
| enum |
|
| |
| boolean |
| Include Universal Editor component model files | |
| boolean |
| Include Commerce Drop-in integration setup |
validate_block
Parameter | Type | Required | Description |
| string | ✅ | Block name |
| string | Block JS contents | |
| string | Block CSS contents | |
| string | Component model JSON | |
| string | Sample content markdown |
check_performance
Parameter | Type | Required | Default | Description |
| string | ✅ | Block name | |
| string | Block JS file contents | ||
| string | Block CSS file contents | ||
| boolean |
| Whether block appears above the fold (eager-loaded) |
explain_dom
Parameter | Type | Required | Default | Description |
| string | ✅ | Block name | |
| string | Block variant (e.g. "dark", "wide") | ||
| number |
| Number of content rows (1–20) | |
| number |
| Number of columns per row (1–6) | |
| string[][] | Specific cell contents as 2D array [row][col] |
lookup_block
Parameter | Type | Required | Description |
| string | ✅ | Block name or description to search for (e.g. "hero", "tabbed content") |
search_block_collection
Parameter | Type | Required | Default | Description |
| string | ✅ | Block name or type to search for | |
| enum |
|
|
eds_config
Parameter | Type | Required | Default | Description |
| enum | ✅ |
| |
| string | Your site domain | ||
| enum |
|
| |
| string | Google Drive folder ID or SharePoint path |
eds_scripts_guide
Parameter | Type | Required | Description |
| enum | ✅ |
|
Architecture
eds-mcp-server/
├── src/
│ ├── index.ts # Server entry point — registers all tools
│ ├── tools/
│ │ ├── scaffold-block.ts # Generate block files
│ │ ├── scaffold-model.ts # Generate UE model files
│ │ ├── scaffold-project.ts # New project guide
│ │ ├── validate-block.ts # Block validation
│ │ ├── explain-dom.ts # Content → DOM mapping
│ │ ├── eds-config.ts # Configuration templates
│ │ ├── check-performance.ts # Performance analysis
│ │ ├── lookup-block.ts # Block pattern search
│ │ ├── search-block-collection.ts # GitHub API block search
│ │ └── eds-scripts.ts # Scripts customization guide
│ ├── resources/
│ │ └── eds-resources.ts # Documentation as MCP resources
│ ├── prompts/
│ │ └── eds-prompts.ts # Prompt templates
│ └── knowledge/
│ ├── eds-conventions.ts # EDS rules, constraints, templates
│ └── block-templates.ts # Code generators
├── package.json
├── tsconfig.json
├── LICENSE
├── evaluations.xml
└── README.mdKey design decisions:
No LLM dependency — the server provides tools and knowledge; your IDE's LLM does the reasoning
No API keys — pure static analysis, scaffolding, and documentation (except
search_block_collectionwhich queries public GitHub API)Convention-encoded — EDS rules are hardcoded into validators and generators
Tool annotations — all tools declare
readOnlyHint,destructiveHint,idempotentHint, andopenWorldHintStdio transport — works with any MCP client (Cursor, VS Code, Claude Code)
Evaluations
The evaluations.xml file contains 10 LLM-facing integration test Q&A pairs. Each question requires calling one or more MCP tools and verifying the response matches expected behavior. Use these with the MCP Inspector to validate the server end-to-end.
EDS Resources
Contributing
Fork the repository
Create a feature branch
Add tools in
src/tools/, knowledge insrc/knowledge/Test with
npm run inspectSubmit a PR
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for building and testing AI agents with multi-model experimentation and insights.
MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
The OpenZeppelin Solidity Contracts MCP server integrates OpenZeppelin's security and style rules into AI-driven development workflows, enabling AI assistants to generate safe, correct, and production-ready smart contracts. It automatically validates generated code against OpenZeppelin standards (including imports, modifiers, naming conventions, and security checks) and supports various contract types including ERC-20, ERC-721, ERC-1155, Stablecoins, RWA, Governor, and Account contracts through prompt-driven workflows.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceAn MCP server that enables developers to summon AI development team agents directly from their IDE to help with tasks like PR reviews, security evaluation, and CI/CD deployment setup.-
- FlicenseNot gradedqualityDmaintenanceA streamlined MCP server that provides essential AI-powered tools for interactive development chat and systematic root cause analysis. It supports multiple AI providers to help developers brainstorm technical solutions and perform evidence-based debugging.-
- AlicenseNot gradedqualityDmaintenanceA full-featured MCP server for Adobe Experience Manager that enables non-technical users to manage AEM content, components, assets, and workflows via natural language through any MCP-compatible client.181 npm4AGPL 3.0
- AlicenseAqualityAmaintenanceMCP server for Adobe Edge Delivery Services (AEM EDS). 20 tools for preview, publish, bulk operations, content reading, Core Web Vitals, 404 tracking, A/B experiments, and site configuration. Works with Claude Code, Cursor, and VS Code Copilot.4184 npm3Apache 2.0