get_user
Retrieve user data such as tokens and settings from VoiceAI-MCP-VAVicky for VoiceAI and AI chat integrations, ensuring full MCP connectivity across platforms.
Instructions
Get user data including tokens and settings
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- index.js:41-49 (registration)Registration of the 'get_user' tool in the ListToolsRequestHandler response. Includes name, description, and input schema (no parameters required).{ name: 'get_user', description: 'Get user data including tokens and settings', inputSchema: { type: 'object', properties: {}, required: [] } },
- index.js:44-48 (schema)Input schema for 'get_user' tool: empty object with no required properties.inputSchema: { type: 'object', properties: {}, required: [] }
- index.js:494-496 (handler)Handler implementation for 'get_user' in the executeTool switch statement. Sets the API endpoint to GET /user (via baseUrl) to retrieve user data and proceeds to fetch it.case 'get_user': url = `${this.baseUrl}/user`; break;