taobao-tmall-data-service

taobao-tmall-data-service

3.5

The TaoBao & Tmall Data Service is an MCP server designed to provide comprehensive data retrieval services from TaoBao and Tmall platforms.

The TaoBao & Tmall Data Service is an MCP server that offers extensive data retrieval capabilities from the TaoBao and Tmall platforms. It is designed to assist businesses and developers in accessing detailed information about products, users, transactions, and logistics. This service enhances data-driven decision-making processes by providing flexible and scalable solutions that can be customized to meet specific user requirements. The service ensures that users receive the most relevant and valuable data, aiding in improving product offerings, optimizing logistics, and understanding customer behaviors.

Features

  • Detailed Product Information: Retrieve extensive details about products, including titles, manufacturers, reviews, prices, and more.
  • User and Transaction Data: Access user profiles and transaction histories to gain insights into consumer behavior.
  • Logistics Information: Obtain logistics data to streamline supply chain management and improve delivery efficiency.
  • Customizable and Upgradable: Tailor the service to include additional data fields or new features as required.

MCP Tools

  • ItemInfoDetail1: Access detailed item information using method 1.
  • ItemInfoDetail2: Access detailed item information using method 2.
  • ItemDescDetail: Retrieve a comprehensive description of an item.
  • ShopSearchByKeyword: Search for shops using specific keywords.
  • SearchSame/SimilarItemById: Find products that are the same or similar based on a product ID.
  • ItemSearchByKeyword1: Search for items using keywords with method 1.
  • ItemSearchByKeyword2: Search for items using keywords with method 2.
  • ItemSearchInShop1: Search for items within a specific shop using method 1.
  • ItemSearchInShop2: Search for items within a specific shop using method 2.
  • ItemSearchByISBN/Barcode: Locate items using their ISBN or barcode.
  • ImageUpload: Upload images to TaoBao's picturespace.
  • ItemSearchByImage: Perform searches for items using images.
  • ShopCategory: Explore shop categories (distinct from item categories).
  • ShopInfoDetail1: Obtain detailed information about shops using method 1.
  • ShopInfoDetail2: Obtain detailed information about shops using method 2.
  • ShopInfoDetail3: Obtain detailed information about shops using method 3.
  • ShopDsrInfo: Access detailed information about a shop's DSR (Detailed Seller Rating).
  • ShopCoupons: Retrieve a list of available coupons from a shop.
  • ShopReviewInfo: Search for shop review information.
  • ItemReviewInfo1: Access item review information using method 1.
  • ItemReviewInfo2: Access item review information using method 2.

Usage with Different Platforms

python

python
import requests

url = 'https://api.taobao-tmall.com/data'
params = {
    'method': 'ItemInfoDetail1',
    'item_id': '1234567890'
}
response = requests.get(url, params=params)
data = response.json()
print(data)

nodejs

javascript
const axios = require('axios');

const url = 'https://api.taobao-tmall.com/data';
const params = {
    method: 'ItemInfoDetail1',
    item_id: '1234567890'
};

axios.get(url, { params })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });