Amazon Seller

v1.0.0Business Applicationsstable

MCP server for amazonseller

amazonsellermcpai-integration
Share:
38
Stars
0
Downloads
0
Weekly
0/5

What is Amazon Seller?

Amazon Seller is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for amazonseller

MCP server for amazonseller

This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP server for amazonseller

Use Cases

Manage Amazon seller operations and access seller central data through MCP integration.
mattcoatsworth

Maintainer

LicenseMIT
Languagejavascript
Versionv1.0.0
UpdatedApr 8, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx amazonseller

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Amazon Seller

The Amazon Seller MCP Server integrates AI assistants with the Amazon Selling Partner API (SP-API), enabling natural-language management of seller operations including catalog browsing, inventory tracking, order processing, report generation, feed submissions, and FBA workflow management. It authenticates via AWS IAM and Amazon SP-API OAuth2 credentials and exposes resources using the amazon-sp-api:// URI scheme across categories such as orders, inventory, listings, finance, notifications, and product pricing. Sellers, marketplace analysts, and automation engineers use it to query real-time seller data, trigger reports, and manage listings without building custom SP-API integrations.

Prerequisites

  • Node.js 18 or newer with npm installed
  • An Amazon Seller Central account with SP-API access enabled
  • SP-API OAuth2 credentials: SP_API_CLIENT_ID, SP_API_CLIENT_SECRET, SP_API_REFRESH_TOKEN
  • AWS IAM credentials with SP-API role: SP_API_AWS_ACCESS_KEY, SP_API_AWS_SECRET_KEY, SP_API_ROLE_ARN
  • Your marketplace ID (e.g., ATVPDKIKX0DER for US) and AWS region (e.g., us-east-1)
1

Clone the repository

Clone the AmazonSeller MCP Server source code from GitHub and enter the project directory.

git clone https://github.com/mattcoatsworth/AmazonSeller-mcp-server.git
cd AmazonSeller-mcp-server
2

Install dependencies

Install all required Node.js packages including the Amazon SP-API client library.

npm install
3

Create the .env file with SP-API credentials

Create a .env file in the project root and populate it with your Amazon SP-API and AWS credentials. Keep this file out of version control.

SP_API_CLIENT_ID=amzn1.application-oa2-client.xxxxxx
SP_API_CLIENT_SECRET=your-client-secret
SP_API_REFRESH_TOKEN=Atzr|your-refresh-token
SP_API_AWS_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE
SP_API_AWS_SECRET_KEY=your-aws-secret-key
SP_API_ROLE_ARN=arn:aws:iam::123456789012:role/SPAPIRole
SP_API_MARKETPLACE_ID=ATVPDKIKX0DER
SP_API_REGION=us-east-1
4

Start the server

Launch the MCP server. Use dev mode for automatic restarts during development.

npm start
# or for development:
npm run dev
5

Add to Claude Desktop configuration

Add the Amazon Seller MCP Server to your Claude Desktop config file so it starts automatically with Claude.

{
  "mcpServers": {
    "amazonseller": {
      "command": "node",
      "args": ["/absolute/path/to/AmazonSeller-mcp-server/index.js"],
      "env": {
        "SP_API_CLIENT_ID": "amzn1.application-oa2-client.xxxxxx",
        "SP_API_CLIENT_SECRET": "your-client-secret",
        "SP_API_REFRESH_TOKEN": "Atzr|your-refresh-token",
        "SP_API_AWS_ACCESS_KEY": "AKIAIOSFODNN7EXAMPLE",
        "SP_API_AWS_SECRET_KEY": "your-aws-secret-key",
        "SP_API_ROLE_ARN": "arn:aws:iam::123456789012:role/SPAPIRole",
        "SP_API_MARKETPLACE_ID": "ATVPDKIKX0DER",
        "SP_API_REGION": "us-east-1"
      }
    }
  }
}

Amazon Seller Examples

Client configuration (Claude Desktop)

Full Claude Desktop configuration block for the Amazon Seller MCP Server with all required SP-API credentials passed as environment variables.

{
  "mcpServers": {
    "amazonseller": {
      "command": "node",
      "args": ["/absolute/path/to/AmazonSeller-mcp-server/index.js"],
      "env": {
        "SP_API_CLIENT_ID": "amzn1.application-oa2-client.xxxxxx",
        "SP_API_CLIENT_SECRET": "your-client-secret",
        "SP_API_REFRESH_TOKEN": "Atzr|your-refresh-token",
        "SP_API_AWS_ACCESS_KEY": "AKIAIOSFODNN7EXAMPLE",
        "SP_API_AWS_SECRET_KEY": "your-aws-secret-key",
        "SP_API_ROLE_ARN": "arn:aws:iam::123456789012:role/SPAPIRole",
        "SP_API_MARKETPLACE_ID": "ATVPDKIKX0DER",
        "SP_API_REGION": "us-east-1"
      }
    }
  }
}

Prompts to try

Example prompts for seller analytics, order management, and inventory queries via the Amazon Seller MCP Server.

- "Show me all pending orders from the last 7 days."
- "What is the current inventory level for ASIN B08XYZ1234?"
- "Generate a sales report for Q1 2024 and download it."
- "List all active listings in my catalog with their current prices."
- "What FBA shipments are in transit right now?"

Troubleshooting Amazon Seller

Authentication fails with 'Access to requested resource is denied' from the SP-API.

Ensure your SP-API application is approved in Seller Central and that the refresh token was generated for the correct selling account. The IAM role specified in SP_API_ROLE_ARN must have the sp-api trust policy allowing your IAM user to assume it.

AWS credential errors: 'The security token included in the request is invalid'.

Double-check SP_API_AWS_ACCESS_KEY and SP_API_AWS_SECRET_KEY. If using temporary credentials, they may have expired. For production, use an IAM user with long-term credentials or configure proper role assumption via SP_API_ROLE_ARN.

SP_API_MARKETPLACE_ID is rejected or returns wrong marketplace data.

Each Amazon marketplace has its own ID. ATVPDKIKX0DER is for the US marketplace. For other regions, find your marketplace ID in Seller Central under Settings > Account Info, or consult the SP-API marketplace ID documentation.

Frequently Asked Questions about Amazon Seller

What is Amazon Seller?

Amazon Seller is a Model Context Protocol (MCP) server that mcp server for amazonseller It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Amazon Seller?

Follow the installation instructions on the Amazon Seller GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Amazon Seller?

Amazon Seller works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Amazon Seller free to use?

Yes, Amazon Seller is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Amazon Seller Alternatives — Similar Business Applications Servers

Looking for alternatives to Amazon Seller? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.

n8n

189.1k

A comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou

LobeHub

77.5k

🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.

Jeecgboot

46.4k

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

CowAgent

44.7k

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

Minds Platform

39.2k

Platform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.

Astrbot

32.8k

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨

Browse More Business Applications MCP Servers

Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "amazonseller": { "command": "npx", "args": ["-y", "amazonseller"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Amazon Seller?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides