Connect an AI assistant to ChannelWiz and query products, listings, and orders across every marketplace in plain language.
https://mcp.channelwiz.com/mcp
Every request to this server carries a ChannelWiz OAuth2 client ID and secret in two headers:
These are not stored on this server. Each client sends its own credentials on every request, and the server exchanges them for a ChannelWiz access token. Ask your ChannelWiz administrator for a client ID and secret.
Run this in your terminal:
claude mcp add --transport http channelwiz https://mcp.channelwiz.com/mcp \
--header "X-Channelwiz-Client-Id: YOUR_CLIENT_ID" \
--header "X-Channelwiz-Client-Secret: YOUR_CLIENT_SECRET"
Add to claude_desktop_config.json, then restart Claude Desktop:
{
"mcpServers": {
"channelwiz": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.channelwiz.com/mcp",
"--header",
"X-Channelwiz-Client-Id:YOUR_CLIENT_ID",
"--header",
"X-Channelwiz-Client-Secret:YOUR_CLIENT_SECRET"
]
}
}
}
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"channelwiz": {
"url": "https://mcp.channelwiz.com/mcp",
"headers": {
"X-Channelwiz-Client-Id": "YOUR_CLIENT_ID",
"X-Channelwiz-Client-Secret": "YOUR_CLIENT_SECRET"
}
}
}
}
Your assistant can now call these tools. All are read-only and accept an optional
tenant filter.
list-client-tenants-tool
List all client tenants accessible to the authenticated user in ChannelWiz. Returns each client with its associated tenant IDs and names. Use the tenant IDs returned here as the "tenant" parameter in other tools.
list-products-tool
List products from ChannelWiz. Supports filtering by SKU, brand, status, barcode, date ranges, price range, supplier, warehouse, and more. Returns paginated results.
list-listing-master-products-tool
List Listing Master products from ChannelWiz. Supports rich filtering by marketplace, listing status, catalog status, price ranges, stock on hand, product attributes, logistics, and more. Returns paginated results.
list-orders-tool
List orders from ChannelWiz. Filter by date range, CW status, WMS status, sales channel, tenant, and search by Suborder ID, Order ID, or Marketplace Order ID. Returns paginated results.
get-order-details-tool
Get full tracking and status details for a specific order by Order ID. Returns shipment tracking, carrier info, and line item details.