Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"amazonseller-mcp-server": {
"args": [
"-y",
"amazon-sp-api-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for interacting with the Amazon Selling Partner API. This server provides tools and resources for accessing Amazon SP-API functionality through a standardized interface.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'amazon-sp-api-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked amazon-sp-api-mcp-server against OSV.dev.
Amazon SP-API Documentation - OverviewOverview documentation for Amazon Selling Partner API
amazon-sp-api://overview
Amazon SP-API Documentation - AuthenticationAuthentication documentation for Amazon Selling Partner API
amazon-sp-api://authentication
Amazon SP-API Documentation - CatalogCatalog documentation for Amazon Selling Partner API
amazon-sp-api://catalog
Amazon SP-API Documentation - OrdersOrders documentation for Amazon Selling Partner API
amazon-sp-api://orders
Amazon SP-API Documentation - InventoryInventory documentation for Amazon Selling Partner API
amazon-sp-api://inventory
Amazon SP-API Documentation - ReportsReports documentation for Amazon Selling Partner API
amazon-sp-api://reports
Amazon SP-API Documentation - FeedsFeeds documentation for Amazon Selling Partner API
amazon-sp-api://feeds
Amazon SP-API Documentation - FinanceFinance documentation for Amazon Selling Partner API
amazon-sp-api://finance
Amazon SP-API Documentation - NotificationsNotifications documentation for Amazon Selling Partner API
amazon-sp-api://notifications
Amazon SP-API Documentation - Product PricingProduct Pricing documentation for Amazon Selling Partner API
amazon-sp-api://productPricing
Amazon SP-API Documentation - ListingsListings documentation for Amazon Selling Partner API
amazon-sp-api://listings
Amazon SP-API Documentation - FBAFBA operations documentation for Amazon Selling Partner API
amazon-sp-api://fba
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for AmazonSeller Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for interacting with the Amazon Selling Partner API. This server provides tools and resources for accessing Amazon SP-API functionality through a standardized interface.
## Features
- Authentication and authorization with Amazon SP-API
- Comprehensive coverage of SP-API endpoints
- Documentation resources for API reference
- Tools for managing catalog, inventory, orders, reports, and more
- Secure credential handling
## Prerequisites
- Node.js 16 or higher
- Amazon Selling Partner API credentials
- AWS credentials with appropriate permissions
## Installation
```bash
npm install amazon-sp-api-mcp-server
```
Or run directly with npx:
```bash
npx amazon-sp-api-mcp-server
```
## Configuration
Create a `.env` file in the root directory with your Amazon SP-API credentials:
```
SP_API_CLIENT_ID=your_client_id
SP_API_CLIENT_SECRET=your_client_secret
SP_API_REFRESH_TOKEN=your_refresh_token
SP_API_AWS_ACCESS_KEY=your_aws_access_key
SP_API_AWS_SECRET_KEY=your_aws_secret_key
SP_API_ROLE_ARN=your_role_arn
SP_API_MARKETPLACE_ID=ATVPDKIKX0DER
SP_API_REGION=us-east-1
```
## Usage
Start the server:
```bash
npm start
```
For development with auto-restart:
```bash
npm run dev
```
To test with MCP Inspector:
```bash
npm run inspect
```
## Available Tools
The server provides tools for interacting with various aspects of the Amazon Selling Partner API:
- Authentication tools
- Catalog tools
- Inventory management
- Order processing
- Report generation and retrieval
- Feed submission
- Financial data access
- Notification management
- Product pricing
- Listings management
- FBA operations
## Documentation Resources
Access API documentation through the `amazon-sp-api://{category}` resource, where category can be:
- overview
- authentication
- catalog
- orders
- inventory
- reports
- feeds
- finance
- notifications
- productPricing
- listings
- fba
## License
MIT