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.
{
"mcpServers": {
"community-express-dev-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 53 days ago. 12 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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