loading…
Search for a command to run...
loading…
An MCP server that enables AI agents to manage multi-marketplace e-commerce operations by connecting to the SellerChamp API. It supports inventory reporting, cr
An MCP server that enables AI agents to manage multi-marketplace e-commerce operations by connecting to the SellerChamp API. It supports inventory reporting, cross-listing analysis, order management, and bulk updates across platforms like Amazon, eBay, and Shopify.
An MCP (Model Context Protocol) server that connects AI agents to the SellerChamp API for inventory reporting, cross-listing analysis, and multi-marketplace management.
SellerChamp is a great platform for managing multi-marketplace ecommerce, but its built-in reporting has gaps. This MCP server fills those gaps by giving AI agents (Claude, etc.) direct access to your SellerChamp data so you can:
None of these workflows are available as a single action in SellerChamp's UI.
| Tool | Description |
|---|---|
sellerchamp_get_marketplace_accounts |
Get all connected marketplace accounts (Amazon, eBay, Shopify, etc.) with account IDs |
| Tool | Description |
|---|---|
sellerchamp_get_orders |
List orders with filtering by status, marketplace, date range |
sellerchamp_get_order |
Get full order details (items, shipping address, tracking) |
sellerchamp_update_order |
Update tracking number, carrier, or notes |
sellerchamp_acknowledge_order |
Acknowledge/confirm an order |
| Tool | Description |
|---|---|
sellerchamp_get_products |
Get products with filtering (SKU, ASIN, UPC, marketplace, tags) |
sellerchamp_get_products_compact |
Get products with essential fields only (lighter response) |
sellerchamp_get_product |
Get a single product by SKU or product ID |
sellerchamp_update_product |
Update pricing, quantity, title, condition, and more |
sellerchamp_set_product_pricing |
Set min/max/retail/cost price by SKU |
sellerchamp_set_product_quantity |
Set available quantity by SKU |
sellerchamp_bulk_update_products |
Bulk update up to 1,000 products at once |
| Tool | Description |
|---|---|
sellerchamp_find_missing_listings |
Find SKUs on one marketplace but missing from another — any pair (full catalog scan) |
sellerchamp_find_crosslist_candidates |
Find products by per-marketplace status filters across any connected marketplace |
| Tool | Description |
|---|---|
sellerchamp_get_variants |
Get all variants for a product (sizes, colors, etc.) |
sellerchamp_update_variant |
Update a variant's pricing or inventory |
| Tool | Description |
|---|---|
sellerchamp_get_inventory_locations |
Get warehouse bin locations for a product |
sellerchamp_bulk_update_inventory |
Bulk update inventory quantities across locations (up to 1,000) |
| Tool | Description |
|---|---|
sellerchamp_get_manifests |
Get manifests (listing collections), optionally filtered by marketplace |
git clone https://github.com/WowWashington/sellerchamp-mcp.git
cd sellerchamp-mcp
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"sellerchamp": {
"command": "/path/to/sellerchamp-mcp/venv/bin/python",
"args": ["/path/to/sellerchamp-mcp/server.py"],
"env": {
"SELLERCHAMP_API_TOKEN": "your_api_token_here"
}
}
}
}
Replace /path/to/sellerchamp-mcp with the actual path where you cloned the repo.
export SELLERCHAMP_API_TOKEN="your_api_token_here"
./run.sh
Use sellerchamp_find_missing_listings with:
source_marketplace: "amazon"
missing_from_marketplace: "ebay"
Use sellerchamp_find_missing_listings with:
source_marketplace: "shopify"
missing_from_marketplace: "walmart"
Use sellerchamp_find_missing_listings with missing_from="ebay"
Automatically sets source to "amazon" for backwards compatibility.
Use sellerchamp_find_crosslist_candidates with:
marketplace_filters: '{"amazon": "active", "ebay": "missing"}'
min_quantity: 1
Use sellerchamp_find_crosslist_candidates with:
marketplace_filters: '{"amazon": "active", "shopify": "active", "walmart": "missing"}'
Returns SKUs active on both Amazon and Shopify but not listed on Walmart.
Use sellerchamp_find_missing_listings with:
source_marketplace: "amazon"
missing_from_marketplace: "ebay"
country_code: "CA"
1. Use sellerchamp_get_marketplace_accounts to get the account ID
2. Use sellerchamp_get_orders with order_status="open" and the marketplace_account_id
Use sellerchamp_bulk_update_products with an array of:
{ "sku": "ABC-123", "retail_price": 29.99, "min_price": 24.99 }
The server enforces SellerChamp's API limit of 120 requests per 60 seconds using a sliding window rate limiter. It caps at 110 requests per window to leave headroom for automatic retries. When the limit is reached, the server sleeps until capacity is available (logged to stderr for visibility).
Automatic retries with exponential backoff handle transient 429/5xx errors.
requests (with urllib3 retry adapter)MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"sellerchamp-mcp-server": {
"command": "npx",
"args": []
}
}
}