get_assistants
Retrieve all AI assistants for authenticated users to manage and integrate custom voice and chat solutions across platforms.
Instructions
Get all assistants for the authenticated user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:544-546 (handler)Handler logic for the 'get_assistants' tool, which sets the API endpoint to fetch all assistants.
case 'get_assistants': url = `${this.baseUrl}/assistants`; break; - index.js:138-142 (schema)Input schema for 'get_assistants' tool, which requires no parameters.
inputSchema: { type: 'object', properties: {}, required: [] } - index.js:135-143 (registration)Registration of the 'get_assistants' tool in the list of available tools, including name, description, and schema.
{ name: 'get_assistants', description: 'Get all assistants for the authenticated user', inputSchema: { type: 'object', properties: {}, required: [] } },