Shopee MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SHOPEE_HOST | No | Shopee API host (live or test). Default: https://partner.shopeemobile.com | https://partner.shopeemobile.com |
| SHOPEE_SHOP_ID | Yes | Shopee Shop ID obtained from OAuth | |
| SHOPEE_PARTNER_ID | Yes | Shopee Partner ID (App ID) from Open Platform | |
| SHOPEE_PARTNER_KEY | Yes | Shopee Partner Key (Secret Key) from Open Platform | |
| SHOPEE_ACCESS_TOKEN | Yes | Shopee Access Token obtained from OAuth (auto-refreshed) | |
| SHOPEE_REFRESH_TOKEN | Yes | Shopee Refresh Token obtained from OAuth |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_shop_infoA | Lấy thông tin shop (tên, khu vực, loại shop, trạng thái). |
| get_item_listC | Lấy danh sách sản phẩm của shop. |
| get_item_base_infoC | Lấy chi tiết sản phẩm theo item_id. |
| get_categoryB | Lấy cây danh mục — cần trước khi đăng bài để có category_id. |
| get_attributesB | Lấy thuộc tính bắt buộc của category_id — cần khi đăng bài. |
| upload_imageC | Upload ảnh từ URL, trả về image_id để đăng bài. |
| add_itemC | ĐĂNG BÀI sản phẩm mới. Cần category_id (get_category), image_id (upload_image), logistics_channel_ids (get_channel_list), attribute_list (get_attributes). |
| update_itemD | Cập nhật thông tin sản phẩm. |
| update_priceC | Cập nhật giá sản phẩm. |
| update_stockC | Cập nhật tồn kho. |
| unlist_itemC | Ẩn/hiện sản phẩm. |
| get_channel_listA | Lấy danh sách kênh vận chuyển — cần logistics_channel_ids khi đăng bài. |
| get_order_listC | Lấy danh sách đơn hàng theo thời gian và trạng thái. |
| get_order_detailC | Lấy chi tiết đơn hàng theo order_sn. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 14 tools
Each tool targets a unique resource and action (e.g., price, stock, orders, items, categories, attributes, images), with no overlap in purpose. Descriptions clearly distinguish their roles.
All tool names follow a consistent verb_noun pattern using underscores (e.g., update_price, get_order_list, add_item), with predictable verbs like get, update, add, unlist.
14 tools are well-scoped for an e-commerce server, covering product lifecycle, orders, logistics, and shop info without being excessive or sparse.
The set covers full product CRUD (create via add_item, read via get_item_list/base_info, update via update_item/price/stock, delete via unlist_item) and order retrieval, with necessary prerequisites like category, attributes, and image upload.