get_category_products
Retrieve detailed product listings within a specific category, such as CPUs or GPUs, including prices and specifications. Input the category ID and optional subcategory or limit to explore all available options in the CoolPC MCP Server.
Instructions
Browse all products within a specific category. Useful for exploring all options in a product type when you don't have specific search criteria. Returns products with full details including prices and specifications.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category_id | Yes | Category ID from list_categories. Examples: 'cat_cpu' for processors, 'cat_vga' for graphics cards. Use list_categories first to get valid IDs | |
| limit | No | Maximum products to return. Valid range: 1-100, default: 20. Higher values to see more products in the category | |
| subcategory_name | No | Filter by specific subcategory name. Example: 'Intel Raptor Lake-s 14代1700 腳位' for 14th gen Intel CPUs. Optional - omit to see all subcategories |
Input Schema (JSON Schema)
{
"properties": {
"category_id": {
"description": "Category ID from list_categories. Examples: 'cat_cpu' for processors, 'cat_vga' for graphics cards. Use list_categories first to get valid IDs",
"type": "string"
},
"limit": {
"description": "Maximum products to return. Valid range: 1-100, default: 20. Higher values to see more products in the category",
"type": "number"
},
"subcategory_name": {
"description": "Filter by specific subcategory name. Example: 'Intel Raptor Lake-s 14代1700 腳位' for 14th gen Intel CPUs. Optional - omit to see all subcategories",
"type": "string"
}
},
"required": [
"category_id"
],
"type": "object"
}