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 "Install 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: Arthur
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 installed
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/AI-enthusiast-eds/eds-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server