MCP Essentials MCP Server

This repository contains both a MCP server (which you can integrate with many MCP clients) and agent essentials that can be used from within agent

Local serverstdioTypeScript

What is the MCP Essentials MCP server?

Mcp essentials mcp server lets Claude, Cursor and other MCP clients work with MCP Essentials directly. This repository contains both a MCP server (which you can integrate with many MCP clients) and agent essentials that can be used from within agent frameworks.

What MCP Essentials does

This repository contains both a MCP server (which you can integrate with many MCP clients) and agent essentials that can be used from within agent frameworks.

Tools it exposes

Once connected, the assistant can call these 14 tools directly:

Installing the mcp essentials mcp server

The server is distributed via npm as @commercetools/mcp-essentials, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 7 environment variables: DYNAMIC_TOOL_LOADING_THRESHOLD, CLIENT_ID, CLIENT_SECRET, PROJECT_KEY, AUTH_URL, ACCESS_TOKEN, CUSTOMER_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Node 18+

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Essentials sits in that group, and the shape of its toolset — products.read, products.create, products.update among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 14 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Essentials.
  • Maintained by commercetools, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp essentials mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
products.read[Read product information](https://docs.commercetools.com/api/projects/products#query-products)
products.create[Create product information](https://docs.commercetools.com/api/projects/products#create-product)
products.update[Update product information](https://docs.commercetools.com/api/projects/products#update-product)
project.read[Read project information](https://docs.commercetools.com/api/projects/project#get-project)
product-search.read[Search products](https://docs.commercetools.com/api/projects/products#search-products)
category.read[Read category information](https://docs.commercetools.com/api/projects/categories#get-category-by-id)
category.create[Create category](https://docs.commercetools.com/api/projects/categories#create-category)
category.update[Update category](https://docs.commercetools.com/api/projects/categories#update-category)
channel.read[Read channel information](https://docs.commercetools.com/api/projects/channels#query-channels)
channel.create[Create channel](https://docs.commercetools.com/api/projects/channels#create-channel)
channel.update[Update channel information](https://docs.commercetools.com/api/projects/channels#update-channel)
product-selection.read[Read product selection](https://docs.commercetools.com/api/projects/product-selections#get-productselection-by-id)
product-selection.create[Create product selection](https://docs.commercetools.com/api/projects/product-selections#create-a-productselection)
product-selection.update[Update product selection](https://docs.commercetools.com/api/projects/product-selections#update-productselection)

How to install the MCP Essentials MCP server

{
  "mcpServers": {
    "commercetools": {
      "command": "npx",
      "args": [
        "-y",
        "@commercetools/mcp-essentials@latest",
        "--tools=all",
        "--clientId=CLIENT_ID",
        "--clientSecret=CLIENT_SECRET",
        "--authUrl=AUTH_URL",
        "--projectKey=PROJECT_KEY",
        "--apiUrl=API_URL",
        "--dynamicToolLoadingThreshold=30"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node 18+
VariableDescriptionRequired
DYNAMIC_TOOL_LOADING_THRESHOLDConfiguration value read at startup.Optional
CLIENT_IDConfiguration value read at startup.Optional
CLIENT_SECRETCredential the server authenticates with.Yes
PROJECT_KEYCredential the server authenticates with.Yes
AUTH_URLEndpoint or connection string the server talks to.Yes
ACCESS_TOKENCredential the server authenticates with.Yes
CUSTOMER_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Essentials to products.read.
  • Use MCP Essentials to products.create.
  • Use MCP Essentials to products.update.

Frequently asked questions

It connects MCP Essentials to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (products.read, products.create, products.update, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Essentials directly.