real-time-amazon-data

real-time-amazon-data

4.0

The Real-Time Amazon Data MCP Server provides real-time access to Amazon's product data, ideal for developers, marketers, and researchers.

The Real-Time Amazon Data MCP Server is a robust and reliable solution for accessing Amazon's vast product data in real-time. This server provides seamless integration for developers, marketers, and researchers who require up-to-date information about Amazon products and services. With comprehensive capabilities, this server is perfect for price monitoring, deal spotting, competitive research, and more.

Features

  • Real-Time Data Access: Obtain real-time data on Amazon products, including detailed information, pricing, reviews, best sellers, and deals.
  • Extensive Product Information: Access comprehensive product details such as title, price data, ratings, photos, variations, and more.
  • Multi-Domain Support: The server supports all 22 Amazon countries/domains, ensuring global reach.
  • Competitive Analysis: Gather insights into Amazon sellers, influencers, and product trends to stay ahead in the market.
  • Powerful Search and Filter Options: Utilize advanced search capabilities with multiple filters, including sort options, price range, and product conditions.

MCP Tools

  • Product Search: Search for products and offers on Amazon with pagination support and multiple filters such as sort options, price range, and product condition.
  • Product Details: Retrieve extensive Amazon product details using ASIN, including pricing data, ratings, photos, and variations.
  • Product Offers: Get detailed product offers, including an array of offers related to a specific product.
  • Product Reviews: Access and paginate through Amazon product reviews with support for filters like star rating and verified purchases.
  • Best Sellers: Retrieve Amazon Best Sellers lists, including prices, ratings, and rankings.
  • Deals and Discounts: Access Amazon's deals, including Today's Deals, Top Deals, and Lightning Deals, with various filter options.
  • Seller Insights: Obtain Amazon Seller profile details and reviews to analyze seller performance and ratings.
  • Influencer Profiles: Access Amazon Influencer profile details and posts to identify potential collaboration opportunities.
  • Utility Tools: Convert Amazon ASINs to GTIN/EAN/UPC identifiers and retrieve Amazon product categories for targeted searches.

Usage with Different Platforms

python

python
import requests

url = 'https://api.amazonmcpserver.com/products'
headers = {'Authorization': 'Bearer YOUR_API_KEY'}
params = {'asin': 'B08N5WRWNW'}

response = requests.get(url, headers=headers, params=params)
print(response.json())

nodejs

javascript
const axios = require('axios');

const options = {
  method: 'GET',
  url: 'https://api.amazonmcpserver.com/products',
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
  params: { asin: 'B08N5WRWNW' }
};

axios.request(options).then(function (response) {
  console.log(response.data);
}).catch(function (error) {
  console.error(error);
});