MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Adobe Commerce Dev MCP Server MCP
Adobe Commerce Dev MCP Server MCP Logo

Adobe Commerce Dev MCP Server MCP

Model Context Protocol Integration

Overview

Model Context Protocol (MCP) server that interacts with Adobe Commerce Dev. This protocol supports various tools to interact with different Adobe Commerce APIs."

# Adobe Commerce Dev MCP

Model Context Protocol (MCP) server that interacts with Adobe Commerce Dev. This protocol supports various tools to interact with different Adobe Commerce APIs.

Installation Instructions


README: https://github.com/rafaelstz/adobe-commerce-dev-mcp

Adobe Commerce Dev MCP

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.

How to use Adobe Commerce Dev MCP Server

Usage with MCP Server via NPM Package

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"]
    }
  }
}

Install MCP Server

  • Replace the server name (adobe-commerce-dev-mcp) as you wish.
  • The npx command will always use the latest version of the MCP server from NPM.
  • No need to install or host anything locally or remotely.

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"]
    }
  }
}

Install MCP Server

Available tools

This MCP server provides the following tools:

Tool NameDescription
introspect_admin_schemaAccess and search Adobe Commerce GraphQL schema

Available prompts

This MCP server provides the following prompts:

Prompt NameDescription
adobe_commerce_graphqlHelp you write GraphQL operations for the Adobe Commerce API

Development

The server is built using the MCP SDK and communicates with Adobe Commerce.

  1. npm install
  2. Modify source files
  3. Run npm run build to compile
  4. Run npm run test to run tests
  5. Add an MCP server that runs this command: node <absolute_path_of_project>/dist/index.js

Set 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"
      ]
    },
  }
}

License

ISC

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.