A

Amazon Selling Partner

Query Amazon Seller Central via SP-API.

·No reviews yet
Repo
Share:

About

Auto-generated

Amazon Selling Partner is a Model Context Protocol server in the Commerce & Payments category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Amazon Selling Partner.

What does the Amazon Selling Partner MCP do?
This MCP allows you to query Amazon Seller Central using the Selling Partner API (SP-API). It provides a standardized interface for interacting with Amazon's seller services, facilitating various e-commerce operations. This allows for automated data retrieval and management related to your Amazon seller account.
How do I install this MCP in an MCP client?
Installation typically involves cloning the repository from https://github.com/amzn/selling-partner-api-mcp and following the client-specific instructions for integrating local MCPs. Refer to your chosen MCP client's documentation for the exact installation process. The MCP uses standard I/O for transport.
Does the Amazon Selling Partner MCP require authentication?
Yes, this MCP requires an API key for authentication. You will need to obtain the necessary API key from Amazon Seller Central to authorize requests made through the Selling Partner API. Specific setup details for using this key will depend on your MCP client and environment.
What are the common uses of this MCP?
Typical use cases include managing product listings, processing orders, retrieving sales reports, and handling inventory within Amazon Seller Central. It is designed to automate and streamline various aspects of managing an Amazon seller business. This can include integrating with other back-office systems.
Is there a cost associated with using the Amazon Selling Partner MCP?
The MCP itself is open-source and community-provided, so there is no direct cost for the software. However, usage of the Amazon Selling Partner API (SP-API) itself may incur costs or be subject to rate limits as defined by Amazon. Refer to Amazon's official SP-API documentation for pricing and usage policies.
What is a prerequisite for using this MCP?
A primary prerequisite is an active Amazon Seller Central account and the necessary permissions to access and generate API keys for the Selling Partner API. Without these, the MCP cannot authenticate or interact with Amazon's services. Users should ensure their Amazon developer profile is correctly configured.

Install Amazon Selling Partner

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "amazon-sp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-amazon-sp"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "amazon-sp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-amazon-sp"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "amazon-sp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-amazon-sp"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.