get_assistants
Retrieve all assistants associated with the authenticated user on the VoiceAI-MCP-VAVicky platform, enabling efficient management and integration of custom VoiceAI and AI chat solutions.
Instructions
Get all assistants for the authenticated user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:544-546 (handler)Handler implementation for the 'get_assistants' tool within the executeTool switch statement. Sets the API URL to fetch all assistants for the authenticated user and proceeds to make a GET request.case 'get_assistants': url = `${this.baseUrl}/assistants`; break;
- index.js:135-143 (registration)Registration of the 'get_assistants' tool in the ListToolsRequestSchema handler, including description and input schema (no required parameters).{ name: 'get_assistants', description: 'Get all assistants for the authenticated user', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:138-142 (schema)Input schema definition for the 'get_assistants' tool: accepts an empty object with no required properties.inputSchema: { type: 'object', properties: {}, required: [] }