Adobe Commerce Dev MCP Server
This project implements a Model Context Protocol (MCP) server that interacts with Adobe Commerce. This protocol supports various tools to interact with Adobe Commerce GraphQL APIs.
You can use this MCP server directly without downloading or hosting anything yourself. Simply configure your MCP client (such as Cursor or Claude Desktop) to use the NPM package:
{
"mcpServers": {
"adobe-commerce-dev-mcp": {
"command": "npx",
"args": ["-y", "@rafaelcg/adobe-commerce-dev-mcp@latest"]
}
}
}
adobe-commerce-dev-mcp) as you wish.npx command will always use the latest version of the MCP server from NPM.On Windows, you might need to use this alternative configuration:
{
"mcpServers": {
"adobe-commerce-dev-mcp": {
"command": "cmd",
"args": ["/k", "npx", "-y", "@rafaelcg/adobe-commerce-dev-mcp@latest"]
}
}
}
This MCP server provides the following tools:
| Tool Name | Description |
|---|---|
| introspect_admin_schema | Access and search Adobe Commerce GraphQL schema |
This MCP server provides the following prompts:
| Prompt Name | Description |
|---|---|
| adobe_commerce_graphql | Help you write GraphQL operations for the Adobe Commerce API |
The server is built using the MCP SDK and communicates with Adobe Commerce.
npm installnpm run build to compilenpm run test to run testsnode <absolute_path_of_project>/dist/index.jsSet it up locally for test as below changing the file location in the args parameter:
{
"mcpServers": {
"adobe-commerce-dev-mcp": {
"command": "node",
"args": [
"/Users/rafael/Herd/shopify-dev-mcp/dist/index.js"
]
},
}
}
ISC
A Model Context Protocol (MCP) server that provides real-time cryptocurrency analysis via CoinCap's API. Enables Claude and other MCP clients to fetch crypto prices, analyze market trends, and track historical data.
An MCP (Model Context Protocol) server for executing macOS terminal commands with ZSH shell. This server provides a secure way to execute shell commands with built-in whitelisting and approval mechanisms.