get_user
Retrieve user authentication tokens and configuration settings from the VoiceAI platform for integration workflows.
Instructions
Get user data including tokens and settings
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:494-496 (handler)Handler implementation for 'get_user' tool: constructs the API URL `${this.baseUrl}/user` for a GET request to retrieve user data.case 'get_user': url = `${this.baseUrl}/user`; break;
- index.js:41-49 (registration)Registration of the 'get_user' tool in the tools list for ListToolsRequestHandler, defining its name, description, and input schema (no required parameters).{ name: 'get_user', description: 'Get user data including tokens and settings', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:44-48 (schema)Input schema definition for 'get_user' tool: accepts an empty object with no required properties.inputSchema: { type: 'object', properties: {}, required: [] }