home / mcp / cs-cart mcp server

CS-Cart MCP Server

Provides a CS-Cart MCP server to manage products, orders, categories, users, and sales analytics through MCP clients.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "hungryweb-cscart-mcp-server": {
      "command": "node",
      "args": [
        "/path/to/cscart-mcp-server/src/index.js"
      ],
      "env": {
        "LOG_LEVEL": "info",
        "CSCART_API_KEY": "your-api-key-here",
        "CSCART_API_URL": "https://your-store.com/api",
        "CSCART_API_EMAIL": "[email protected]"
      }
    }
  }
}

Available tools

get_products

Retrieve product listings with filtering and pagination to view store inventory.

get_product

Fetch detailed information for a single product.

create_product

Add a new product to the CS-Cart store with essential fields like name, price, categories, and stock.

update_product

Update details of an existing product, including pricing and description.

delete_product

Remove a product from the CS-Cart store.

update_product_stock

Adjust inventory levels for a product.

get_orders

Retrieve order listings with filters to monitor fulfillment.

get_order

Get full details of a specific order.

update_order_status

Change an order’s status and optionally notify the customer.

get_categories

List categories and subcategories to organize products.

get_users

Retrieve customer and user information from CS-Cart.

get_sales_statistics

Provide sales data and analytics to understand performance.