list_brands
Retrieve a comprehensive list of all watch brands stored in the WatchBase database to streamline brand-specific queries and data access.
Instructions
Retrieve a list of all brands in the database.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:124-128 (registration)Registration of the 'list_brands' tool, including its schema (no input parameters required). This defines the tool for the ListTools endpoint.{ name: 'list_brands', description: 'Retrieve a list of all brands in the database.', inputSchema: { type: 'object', properties: {} }, // No input required },
- src/index.ts:205-208 (handler)Handler implementation for 'list_brands' tool within the CallToolRequestSchema handler. Sets the API path to 'brands' and proceeds to make the API call via axiosInstance.get(apiPath). No argument validation required.case 'list_brands': // No specific argument validation needed apiPath = 'brands'; break;