get_dashboard_assistant
Retrieve the personalized dashboard assistant for authenticated users, enabling efficient management and customization of VoiceAI integrations through the MCP server.
Instructions
Get the dashboard assistant for the authenticated user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:288-296 (registration)Registration of the 'get_dashboard_assistant' tool in the ListToolsRequestSchema response, including its name, description, and input schema (no required parameters).{ name: 'get_dashboard_assistant', description: 'Get the dashboard assistant for the authenticated user', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:591-593 (handler)Handler implementation within the executeTool method's switch statement. Sets the API endpoint URL to fetch the dashboard assistant via a GET request using the common fetch logic afterward.case 'get_dashboard_assistant': url = `${this.baseUrl}/assistants/gohighlevel/dashboard`; break;