taobao-tmall1

taobao-tmall1

3.5

The Taobao-Tmall1 MCP Server provides structured access to product and vendor data from Taobao and Tmall, China's largest e-commerce marketplaces.

The Taobao-Tmall1 MCP (Merchant Commerce Platform) Server is a crucial tool for accessing and integrating data from Taobao and Tmall, the largest e-commerce platforms in China. It offers structured access to product and vendor data, making it essential for e-commerce platforms, product sourcing services, dropshipping tools, and applications targeting the Chinese online market. The server supports a wide range of functionalities, including product search, detailed product information retrieval, customer reviews and ratings analysis, and vendor information access. These features enable businesses to build comprehensive product pages, sync external systems with up-to-date marketplace data, and assess vendor reliability, thereby enhancing their market analysis and sourcing strategies.

Features

  • Product Search: Search for products using keywords, filters, and sorting options, including text and image-based searches.
  • Detailed Product Information: Retrieve comprehensive details about products, including SKUs, pricing, and discounts.
  • Product Descriptions: Access full product descriptions in a structured format for content integration.
  • Customer Reviews and Ratings: Analyze customer feedback and product quality through reviews and ratings.
  • Vendor Information: Fetch detailed vendor information, including seller ratings and store data.

MCP Tools

  • Search for Products: Utilize parameters like title, price range, image, and orders volume to search for products.
  • Get Item Full Information: Retrieve complete details about a specific product using its item ID.
  • Get Catalog: Retrieve the full product catalog from Taobao and Tmall.
  • Get Item Description: Fetch structured product descriptions for Taobao or Tmall products.
  • Get Item Reviews: Access customer reviews and ratings for products.
  • Get Vendor Information: Fetch detailed information about a seller using their shop ID or vendor reference.
  • Get Delivery Area List: Retrieve area codes necessary for delivery requests.

Usage with Different Platforms

python

python
import requests

url = 'https://api.taobao-tmall1.com/search'
params = {
    'keyword': 'laptop',
    'sort': 'price',
    'order': 'asc'
}
response = requests.get(url, params=params)
print(response.json())

nodejs

javascript
const axios = require('axios');

axios.get('https://api.taobao-tmall1.com/search', {
    params: {
        keyword: 'laptop',
        sort: 'price',
        order: 'asc'
    }
})
.then(response => {
    console.log(response.data);
})
.catch(error => {
    console.error(error);
});