Stats
Actions
Tags
From saleor-configurator
Connects to Saleor e-commerce API for managing products, orders, customers, and store data. Runs locally as stdio subprocess; requires SALEOR_API_URL and SALEOR_TOKEN.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"saleor": {
"command": "npx",
"args": [
"-y",
"@saleor/mcp-server"
],
"env": {
"SALEOR_TOKEN": "${SALEOR_TOKEN}",
"SALEOR_API_URL": "${SALEOR_API_URL}"
}
}
}
}Replace placeholder values for: SALEOR_TOKEN
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
SALEOR_TOKEN=${SALEOR_TOKEN}SALEOR_API_URL=${SALEOR_API_URL}Sensitive values you must provide — never committed to source control
npx claudepluginhub saleor/configurator --plugin saleor-configurator