A community-built MCP server that provides developer tools for building Adobe Express add-ons, integrating directly with LLMs like GitHub Copilot in VS Code.
MCPpedia last refreshed this data
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"adobe-express": {
"args": [
"/ABSOLUTE/PATH/TO/community-express-dev-mcp/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This is a Model Context Protocol (MCP) server designed for Adobe Express Add-on developers. It provides developer-focused tools to assist with building Adobe Express add-ons and integrating with Adobe Express SDK.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked community-express-dev-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Community Express Dev Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is a Model Context Protocol (MCP) server designed for Adobe Express Add-on developers. It provides developer-focused tools to assist with building Adobe Express add-ons and integrating with Adobe Express SDK.
The server provides the following tools:
You can install the Adobe Express MCP Server in several ways:
# Install globally
npm install -g community-express-dev-mcp
# Run the VS Code installation script
express-mcp-install
# Clone the repository
git clone https://github.com/EnventDigital/community-express-dev-mcp.git
cd community-express-dev-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run the VS Code installation script
npm run install-in-vscode
If you want to use the MCP server in a specific VS Code workspace:
# If installed globally from NPM:
cd /path/to/your/project
express-mcp-workspace
# If installed from GitHub:
cd /path/to/your/project
/path/to/community-express-dev-mcp/scripts/install-to-workspace.js
This will create a .vscode/mcp.json file in your project that configures the Adobe Express MCP server for that workspace.
# Build the project
npm run build
# Start the server in development mode
npm run dev
# Start the server
npm start
# Parse documentation repositories for local mode
npm run parse-docs
This MCP server can access documentation from two sources:
In GitHub mode, the server uses the GitHub API to search and fetch documentation from:
To use GitHub mode, you need to create a GitHub Personal Access Token (PAT) and add it to your .env file:
MCP_GITHUB_PAT=your_github_token_here
In local mode, the server uses pre-parsed documentation stored in a local knowledge base file. To generate this file:
mkdir -p adobe-docs-repo
git clone https://github.com/AdobeDocs/express-add-ons-docs.git adobe-docs-repo/express-add-ons-docs
git clone https://github.com/adobe/spectrum-web-components.git adobe-docs-repo/spectrum-web-components
npm run build
npm run parse-docs
dist/knowledge_base.json file with parsed documentation.You can switch between modes using the "setKnowledgeSource" tool or by setting the KNOWLEDGE_SOURCE_MODE in your .env file.
To use this MCP server with Claude for Desktop:
Build the project using npm run build
Open/create Claude for Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonYou can create/edit this file with VS Code:
# For Mac
code ~/Library/Ap