goods-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@goods-mcp-serversearch for organic skincare products on retail"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Product Big Data Service
Main Features
๐ข Enterprise abbreviation and keyword search
๐ Retail product and overseas online store search
๐งพ Enterprise retail product and e-commerce product queries
๐ Overseas store product catalog queries
๐ท๏ธ Beauty industry enterprise brand and product efficacy analysis
๐ Domestic and global online store channel analysis
Related MCP server: Enterprise Operation Insight MCP Server
Service Design Notes
The service provides 6 Tools based on actual usage targets, rather than laying out tools by upstream API count.
When users only provide an enterprise abbreviation, first use
goods_enterprise_searchto obtain the full enterprise name or stable ID.Enterprise products and overseas store products are provided as separate Tools to avoid the same parameter expressing different objects in different sources.
goods_enterprise_productscan select retail or e-commerce products, but a single call only accesses one Product ID.Enterprise retail products have a maximum of 10 items per page; other paginated queries have a maximum of 50 items per page.
The business outer layer of paginated results is uniformly
totalandresultList.Store best-seller, monthly sales, and cumulative sales capabilities that depended on third-party products have been removed; price or sales trend Tools are no longer registered.
On success, Tools return the business
dataextracted by the HandaaS Integrator Gateway.
Environment Requirements
Python 3.10+
Dependencies: python-dotenv, requests, mcp
Local Quick Start
1. Enter the Project Directory
cd goods-mcp-server2. Create a Virtual Environment and Install Dependencies
python3 -m venv mcp_env
source mcp_env/bin/activate
pip install -r requirements.txt3. Configure Environment Variables
cp .env.example .envEdit .env:
INTEGRATOR_ID=your_integrator_id
SECRET_ID=your_secret_id
SECRET_KEY=your_secret_key
HANDAAS_REQUEST_TIMEOUT=30HANDAAS_REQUEST_TIMEOUT is optional, in seconds, with a default value of 30.
4. Start the Service
python server/mcp_server.py streamable-httpThe default service address is http://localhost:8000/mcp.
You can also use:
./start_mcp_server.sh streamable-httpSupports three startup methods: stdio, sse, and streamable-http.
5. Cursor / Cherry Studio Configuration
{
"mcpServers": {
"goods-mcp-server": {
"type": "streamableHttp",
"url": "http://127.0.0.1:8000/mcp"
}
}
}STDIO Installation and Deployment
Replace {workdir} with the absolute project path:
{
"mcpServers": {
"goods-mcp-server": {
"command": "{workdir}/mcp_env/bin/python",
"args": [
"{workdir}/server/mcp_server.py",
"stdio"
]
}
}
}INTEGRATOR_ID, SECRET_ID, and SECRET_KEY need to be obtained after registering at HandaaS and activating the integrator. Real credentials should only be stored in the local .env or deployment secrets.
Available Tools and Product IDs
MCP Tool | Scenario or Option | Product ID |
| Query enterprises by abbreviation, brand, or product keyword |
|
|
|
|
|
|
|
|
|
|
|
|
|
| Overseas online store products |
|
|
|
|
|
|
|
|
|
|
|
|
|
1. goods_enterprise_search
Function: Search candidate enterprises by enterprise abbreviation, brand, product, or other keywords.
Main Parameters:
matchKeyword(required): Enterprise abbreviation or related keyword.pageIndex(optional): Page number, starting from 1.pageSize(optional): Default 10, maximum 50.
Returns: Candidate enterprises total/resultList. After confirming an enterprise, preferably pass the full enterprise name, enterprise ID, or unified social credit code to the enterprise product, brand, and channel Tools.
2. goods_search
Function: Search retail products or overseas online stores for product selection, product discovery, and cross-border channel filtering.
Main Parameters:
matchKeyword(optional): Product name, online store name, or product keyword.source(optional):retailretail products;overseasoverseas online stores. Defaultretail.pageIndex(optional): Page number, starting from 1.pageSize(optional): Maximum 50; retail search default 10, overseas search default 50.eshopSource,eshopCategories,eshopSalesLevel(optional): Only used for overseas online store search.operationStatus,hasAssociateEnterprise(optional): Overseas online store status and associated enterprise filtering.
Returns: total and resultList.
3. goods_enterprise_products
Function: Query retail or e-commerce products by enterprise, suitable for product qualification verification, enterprise product inventory, and competitor research.
Main Parameters:
matchKeyword(required): Enterprise name, enterprise ID, registration number, or unified social credit code.productType(optional):retailenterprise retail products;ecommerceenterprise e-commerce products. Defaultretail.keywordType(optional):name,nameId,regNumber, orsocialCreditCode.pageIndex(optional): Page number, starting from 1.pageSize(optional): Retail products maximum 10, default 10; e-commerce products maximum 50, default 50.
Retail Product Return Fields:
Product name, product barcode, listing date
Enterprise name, enterprise ID
Brand name, GPC category
E-commerce Product Return Fields:
Product name, image link, price, product source
4. goods_overseas_store_products
Function: Query the store product catalog by overseas online store ID.
Main Parameters:
storeId(required): The online store_idreturned bygoods_search(source=overseas).pageIndex,pageSize(optional): MCP local pagination,pageSizemaximum 50.
Returns: Product quantity, reviews, BSR, category, product name, and link information, uniformly formatted as total/resultList.
5. goods_brand
Function: Query beauty industry enterprise brand details or brand product efficacy overview.
Main Parameters:
matchKeyword(required): Enterprise identifier.view(optional):brand_detailbrand details;product_overviewproduct efficacy overview.keywordType(optional): Enterprise identifier type.
6. goods_channel
Function: Query the enterprise's domestic e-commerce store list or global domestic and overseas online store details.
Main Parameters:
matchKeyword(required): Enterprise identifier.source(optional):domestic_storedomestic e-commerce stores;global_storedomestic and overseas online stores.keywordType(optional): Enterprise identifier type.pageIndex,pageSize(optional): Only used for domestic stores,pageSizemaximum 50.
Usage Scenarios
Enterprise Identification: Use abbreviations, brand, or product keywords to find candidate enterprises and stable identifiers.
Product Discovery: Discover retail products by product keyword, or filter overseas online stores by product and platform.
Enterprise Product Inventory: Query an enterprise's retail product barcodes, brands, GPC categories, and e-commerce product prices.
Product Qualification Verification: Use enterprise identifiers to locate the product entity and verify product name, barcode, and listing information.
Cross-border Competitor Research: Enter a specific store's product catalog from overseas online store search, analyzing categories and BSR.
Brand Analysis: Understand beauty industry enterprise brands, main products, and product efficacy layout.
Channel Analysis: Compare an enterprise's domestic e-commerce stores and domestic/overseas online store layout.
Usage Notes
Single Data Source Call: A single call only accesses one Product ID selected by
source,productType, orview.Pagination Limits: Enterprise retail products have a maximum
pageSizeof 10; other paginated Tools have a maximum of 50.Abbreviation Handling: If an enterprise abbreviation cannot be queried directly, first call
goods_enterprise_search.Identifier Priority: After confirming a candidate, preferably use the enterprise ID or unified social credit code.
Overseas Store ID:
storeIdmust come from overseas online store search results; enterprise names cannot be used as a substitute.Empty Results:
total=0,resultList=[]are valid business results.Capability Boundary: This service no longer provides store best-seller, monthly sales, cumulative sales, or sales trend queries.
Example Questions
goods_enterprise_search
Which enterprises correspond to "Xiaomi"?
Help me find the exact enterprise name and enterprise ID for "Gree".
goods_search
Help me find coffee products in the retail market, show 10 first.
Search Amazon overseas online stores selling coffee.
goods_enterprise_products
Query the retail product names, barcodes, and brands of Xiaomi Technology Co., Ltd.
View the product names, prices, and sources published by a certain enterprise on e-commerce platforms.
goods_overseas_store_products
View this overseas online store's product catalog and BSR.
List the products and review counts of a specified overseas store by page.
goods_brand
Query the brand details of Shanghai Jahwa United Co., Ltd.
Analyze the brand product efficacy overview of L'Orรฉal (China) Co., Ltd.
goods_channel
What domestic e-commerce stores does Gree Electric Appliances Inc. of Zhuhai have?
What domestic and overseas online store channels does Beijing JD Century Trading Co., Ltd. have?
Testing and Verification
python -m py_compile server/mcp_server.py
python -m unittest discover -s tests -vUnit tests use Mock HTTP responses and do not call real HandaaS product APIs.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Product intel: Amazon, AliExpress, Shopify, TikTok Shop, ads and search interest.
Real-time Amazon product, seller, and search data for AI agents across 21 marketplaces.
171E-commerce competitor intelligence, VOC sentiment, Amazon ASIN analysis, Reddit growth playbooks.
Amazon keyword volume, reverse-ASIN, and SERP data across 11 marketplaces.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive access to Chinese bidding and tendering data, enabling users to search for companies, analyze bidding statistics, query tender announcements, and discover project opportunities for market analysis and business development.10-
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive data insights into enterprise operations, including company trends, financing history, market rankings, and sentiment analysis. It enables users to perform keyword-based searches and evaluate business scale, tax qualifications, and competitive project profiles.3-
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive enterprise e-commerce data including global store profiles, product category statistics, and sales performance analysis. It enables users to search for companies and evaluate their domestic and international e-commerce business layouts across various platforms.2-
- FlicenseNot gradedqualityCmaintenanceMonitors and analyzes product prices across major e-commerce platforms (Taobao, JD, PDD, 1688, Amazon) with tools for price alerts, competitor comparison, market trends, and deal detection.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/handaas/goods-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server