Amazon Seller Central integration
## Amazon Seller MCP Server: Marketplace Integration The **Amazon Seller MCP Server** integrates Amazon's Seller Central into Google Antigravity, enabling developers to manage products, orders, and inventory through AI-assisted marketplace operations. ### Why Amazon Seller MCP? - **Global Marketplace**: Access to millions of Amazon customers - **FBA Integration**: Fulfillment by Amazon order management - **Inventory Sync**: Real-time inventory updates across channels - **Order Automation**: Automated order processing and fulfillment - **Reports Access**: Sales, inventory, and performance reports ### Key Features #### 1. Product and Inventory Management ```javascript // List products const products = await amazon.listCatalogItems({ marketplaceId: "ATVPDKIKX0DER", sellerId: "YOUR_SELLER_ID", keywords: "electronics" }); // Update inventory await amazon.updateInventory({ sellerId: "YOUR_SELLER_ID", inventory: [ { sku: "PROD-001", quantity: 100, fulfillmentChannel: "DEFAULT" } ] }); // Get product details const product = await amazon.getCatalogItem({ marketplaceId: "ATVPDKIKX0DER", asin: "B0XXXXX" }); ``` #### 2. Order Management ```javascript // Get orders const orders = await amazon.getOrders({ marketplaceIds: ["ATVPDKIKX0DER"], createdAfter: "2024-12-01T00:00:00Z", orderStatuses: ["Unshipped", "PartiallyShipped"] }); // Confirm shipment await amazon.confirmShipment({ orderId: "ORDER_ID", shipmentDetails: { carrier: "UPS", trackingNumber: "1Z999AA10123456784", shipDate: new Date().toISOString() } }); // Get FBA inventory const fbaInventory = await amazon.getFbaInventory({ sellerId: "YOUR_SELLER_ID", granularity: "Marketplace" }); ``` ### Configuration ```json { "mcpServers": { "amazon-seller": { "command": "npx", "args": ["-y", "@anthropic/mcp-amazon-seller"], "env": { "AMAZON_SELLER_ID": "your-seller-id", "AMAZON_CLIENT_ID": "your-client-id", "AMAZON_CLIENT_SECRET": "your-client-secret", "AMAZON_REFRESH_TOKEN": "your-refresh-token" } } } } ``` ### Use Cases **Multi-Channel Selling**: Manage Amazon listings alongside other channels. **Inventory Sync**: Keep inventory synchronized in real-time. **Order Automation**: Automate order processing and fulfillment workflows. The Amazon Seller MCP Server brings marketplace power to your e-commerce workflow.
{
"mcpServers": {
"amazon-seller": {
"mcpServers": {
"amazon-seller": {
"env": {
"AMAZON_CLIENT_ID": "your-client-id",
"AMAZON_CLIENT_SECRET": "your-client-secret",
"AMAZON_REFRESH_TOKEN": "your-refresh-token"
},
"args": [
"-y",
"amazon-sp-mcp-server"
],
"command": "npx"
}
}
}
}
}