Back to MCP directory
publicPublicdnsLocal runtime

Adobe Commerce Dev MCP

该项目实现了一个与Adobe Commerce交互的MCP服务器,支持通过GraphQL API与Adobe Commerce进行交互,提供模式查询和操作编写功能。

article

README

🚀 Adobe Commerce 开发 MCP 服务器

本项目搭建了一个可与 Adobe Commerce 交互的 Model Context Protocol (MCP) 服务器。该协议为各类工具提供支持,使其能够与 Adobe Commerce GraphQL API 进行交互。

🚀 快速开始

此项目实现了一个与 Adobe Commerce 交互的 MCP 服务器,支持多种工具与 Adobe Commerce GraphQL API 进行交互。

📦 安装指南

使用 npx 运行 Adobe Commerce MCP 服务器,请运行以下命令:

npx -y @rafaelcg/adobe-commerce-dev-mcp@latest

📚 详细文档

配置指南(适用于 Cursor 或 Claude Desktop)

在你的配置文件中添加以下内容。如需更多详细信息,请参阅 Cursor MCP 文档Claude Desktop MCP 指南

{
  "mcpServers": {
    "adobe-commerce-dev-mcp": {
      "command": "npx",
      "args": ["-y", "@rafaelcg/adobe-commerce-dev-mcp@latest"]
    }
  }
}

⚠️ 重要提示

在 Windows 系统上,可能需要使用以下替代配置:

{
  "mcpServers": {
    "adobe-commerce-dev-mcp": {
      "command": "cmd",
      "args": ["/k", "npx", "-y", "@rafaelcg/adobe-commerce-dev-mcp@latest"]
    }
  }
}

提供的工具

此 MCP 服务器提供以下工具: | 工具名称 | 描述 | | ----------------------- | ---------------------------------------------- | | introspect_admin_schema | 访问和搜索 Adobe Commerce GraphQL 模式 |

可用提示

此 MCP 服务器提供以下提示: | 提示名称 | 描述 | | --------------------- | ----------------------------------------------------------- | | adobe_commerce_graphql | 帮助编写 Adobe Commerce API 的 GraphQL 操作 |

开发指南

该服务器使用 MCP SDK 构建,并与 Adobe Commerce 进行通信。开发步骤如下:

  1. npm install
  2. 修改源文件
  3. 运行 npm run build 以编译
  4. 运行 npm run test 执行测试
  5. 添加一个运行以下命令的 MCP 服务器:node <项目绝对路径>/dist/index.js

📄 许可证

本项目采用 ISC 许可证。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client