home / mcp / cs-cart mcp server
Provides a CS-Cart MCP server to manage products, orders, categories, users, and sales analytics through MCP clients.
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]"
}
}
}
}Retrieve product listings with filtering and pagination to view store inventory.
Fetch detailed information for a single product.
Add a new product to the CS-Cart store with essential fields like name, price, categories, and stock.
Update details of an existing product, including pricing and description.
Remove a product from the CS-Cart store.
Adjust inventory levels for a product.
Retrieve order listings with filters to monitor fulfillment.
Get full details of a specific order.
Change an order’s status and optionally notify the customer.
List categories and subcategories to organize products.
Retrieve customer and user information from CS-Cart.
Provide sales data and analytics to understand performance.