list_families
Retrieve all watch families for a specific brand using the WatchBase MCP Server, enabling structured access to comprehensive watch metadata for querying and analysis.
Instructions
Retrieve a list of all families for a given brand.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
brand_id | Yes | BrandID of the brand |
Input Schema (JSON Schema)
{
"properties": {
"brand_id": {
"description": "BrandID of the brand",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
}
},
"required": [
"brand_id"
],
"type": "object"
}