get_assistant
Retrieve essential details about a specific assistant using the assistant ID. Ideal for managing and integrating custom VoiceAI solutions with full MCP connectivity.
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: constructs the API URL `/assistants/{assistant_id}` and performs a GET request via fetch.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)Tool registration in the ListToolsRequestHandler response, defining name, description, and input schema for 'get_assistant'.{ 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'] } },