get_assistant
Retrieve basic information about a specific VoiceAI assistant by providing its unique ID to access configuration details and capabilities.
Instructions
Get basic information about a specific assistant
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assistant_id | Yes | Assistant ID |
Implementation Reference
- index.js:548-550 (handler)Handler logic for the 'get_assistant' tool within the executeTool switch statement. It constructs the API URL using the provided assistant_id and proceeds to fetch the data.case 'get_assistant': url = `${this.baseUrl}/assistants/${args.assistant_id}`; break;
- index.js:147-153 (schema)Input schema definition for the 'get_assistant' tool, specifying the required 'assistant_id' parameter.inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' } }, required: ['assistant_id'] }
- index.js:144-154 (registration)Registration of the 'get_assistant' tool in the ListTools response, including name, description, and input schema.{ name: 'get_assistant', description: 'Get basic information about a specific assistant', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' } }, required: ['assistant_id'] } },