AI-powered Amazon Seller Central tools for inventory management, fee calculation, and optimization via SP-API. mcp-name: io.github.wmarceau/amazon-seller See SKILL.md for detailed tool documentation. Create .env file: - FBA fulfillment fees (size-tier based) - Monthly storage fees (seasonal rates) - Aged inventory surcharges (12-15mo, 15+mo) - Low inventory level fees - GET call fee awareness (pos
Add this skill
npx mdskills install MarceauSolutions/amazon-seller-mcpComprehensive Amazon SP-API integration with strong fee calculation and inventory tools
1# Amazon Seller Operations23AI-powered Amazon Seller Central tools for inventory management, fee calculation, and optimization via SP-API.45mcp-name: io.github.wmarceau/amazon-seller67## Features89| Feature | Script | Description |10|---------|--------|-------------|11| SP-API Integration | `amazon_sp_api.py` | Core API with caching |12| FBA Fee Calculator | `amazon_fee_calculator.py` | 2026 fee structure |13| Inventory Optimizer | `amazon_inventory_optimizer.py` | Restock recommendations |14| OAuth Authentication | `amazon_oauth_server.py` | OAuth flow handling |15| MCP Server | `amazon_seller_mcp.py` | MCP protocol wrapper |1617## Directory Structure1819```20amazon-seller/21├── src/22│ ├── amazon_sp_api.py # Core SP-API client23│ ├── amazon_fee_calculator.py # FBA fee calculations24│ ├── amazon_inventory_optimizer.py # Restock recommendations25│ ├── amazon_oauth_server.py # OAuth server26│ └── ...27├── mcp-server/28│ └── amazon_seller_mcp.py # MCP server wrapper29├── registry/30│ └── manifest.json # MCP Registry manifest31├── VERSION # Current version32├── CHANGELOG.md # Version history33├── SKILL.md # MCP tool documentation34└── README.md # This file35```3637## MCP Tools3839| Tool | Description |40|------|-------------|41| `get_inventory_summary` | Get FBA inventory levels |42| `get_orders` | Get recent orders |43| `get_order_items` | Get order line items |44| `get_product_details` | Get product info |45| `calculate_fba_fees` | Calculate comprehensive fees |46| `estimate_profit_margin` | Quick profit estimation |47| `suggest_restock_quantities` | Reorder recommendations |48| `analyze_sell_through_rate` | Sales velocity analysis |4950See [SKILL.md](SKILL.md) for detailed tool documentation.5152## Quick Start5354### 1. Install Dependencies55```bash56pip install python-amazon-sp-api python-dotenv mcp57```5859### 2. Configure Credentials60Create `.env` file:61```env62AMAZON_REFRESH_TOKEN=your_refresh_token63AMAZON_LWA_APP_ID=your_client_id64AMAZON_LWA_CLIENT_SECRET=your_client_secret65AMAZON_AWS_ACCESS_KEY=your_aws_access_key66AMAZON_AWS_SECRET_KEY=your_aws_secret_key67AMAZON_ROLE_ARN=arn:aws:iam::123456789:role/your-role68AMAZON_MARKETPLACE_ID=ATVPDKIKX0DER69```7071### 3. Test Connection72```bash73python src/test_amazon_connection.py74```7576### 4. Run MCP Server77```bash78python mcp-server/amazon_seller_mcp.py79```8081## CLI Usage8283### Calculate Fees84```bash85python src/amazon_fee_calculator.py --asin B08XYZ123 --price 29.99 --cost 10.0086```8788### Get Inventory Recommendations89```bash90python src/amazon_inventory_optimizer.py --asin B08XYZ123 --days 3091```9293## Key Features9495### 2026 Fee Structure96- FBA fulfillment fees (size-tier based)97- Monthly storage fees (seasonal rates)98- Aged inventory surcharges (12-15mo, 15+mo)99- Low inventory level fees100- GET call fee awareness (post April 2026)101102### Caching Layer103Aggressive caching to minimize API costs:104- Inventory: 30 min105- Orders: 15 min106- Products: 24 hours107- Fees: 24 hours108109### Multi-Marketplace110Supports US, CA, MX, BR, UK, DE, FR, IT, ES, NL, JP, SG, AU111112## Version113114Current version: 1.0.0115116## License117118MIT License119
Full transparency — inspect the skill content before installing.