- Home
- MCP servers
- Adobe Commerce Dev
Adobe Commerce Dev
- typescript
20
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"rafaelstz-adobe-commerce-dev-mcp": {
"command": "npx",
"args": [
"-y",
"@rafaelcg/adobe-commerce-dev-mcp@latest"
]
}
}
}You can use the Adobe Commerce Dev MCP Server to interact with Adobe Commerce GraphQL APIs through the Model Context Protocol. This MCP server lets you query and operate against the Adobe Commerce GraphQL surface via an MCP client without hosting any server locally, using a lightweight, configurable setup.
How to use
Configure your MCP client (for example Cursor or Claude Desktop) to point to the MCP server using the provided npm-based setup. You have two equivalent local configurations you can adopt. The first uses npx to fetch the latest MCP server package, ensuring you always run the most recent version. The second option is a Windows-specific command that wraps the same approach so it works in that environment. After configuring, you can send operations to Adobe Commerce GraphQL through the MCP interface just like you would with any other MCP server.
How to install
Prerequisites: Make sure you have Node.js and npm installed on your machine.
Install and configure the MCP server via npm-based commands as shown in the setup snippet.
Build and test the MCP server locally to verify everything is wired correctly.
Use the following MCP configuration to run the server via npx. Replace the server name if you wish, but keep the command and arguments intact to pull the latest MCP server from the package registry.
{
"mcpServers": {
"adobe_commerce_dev": {
"command": "npx",
"args": ["-y", "@rafaelcg/adobe-commerce-dev-mcp@latest"]
}
}
}
Additional sections
This MCP server exposes a straightforward development workflow. You can develop against the Adobe Commerce GraphQL API using the provided tools and prompts to assist with creating GraphQL operations. The server is built with the MCP SDK and communicates with Adobe Commerce.
If you are on Windows, you can use the alternative configuration that launches the same MCP server via a Windows command shell. This ensures compatibility with cmd while preserving the same underlying command to fetch the latest package.
Development steps you might follow include installing dependencies, building the project, running tests, and then starting an MCP server instance that runs the built index. The typical flow is: install, modify source as needed, build, test, and run the runtime server.
Available tools
introspect_admin_schema
Access and search the Adobe Commerce GraphQL schema to discover available types, queries, and mutations.