delete_assistant
Remove an assistant from the VoiceAI-MCP-VAVicky server by specifying the assistant ID to manage and optimize your AI integrations effectively.
Instructions
Delete an assistant
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assistant_id | Yes | Assistant ID |
Implementation Reference
- index.js:569-572 (handler)The switch case in the executeTool method that implements the delete_assistant tool by preparing a DELETE HTTP request to the backend API endpoint for the specified assistant.case 'delete_assistant': url = `${this.baseUrl}/assistants/${args.assistant_id}`; method = 'DELETE'; break;
- index.js:230-240 (registration)The tool definition including name, description, and input schema, registered in the ListToolsRequestSchema handler's tools array.{ name: 'delete_assistant', description: 'Delete an assistant', inputSchema: { type: 'object', properties: { assistant_id: { type: 'string', description: 'Assistant ID' } }, required: ['assistant_id'] } },