- Home
- MCP servers
- CS-Cart
CS-Cart
- javascript
2
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
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": "admin@yourstore.com"
}
}
}
}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.