user_get
Retrieve user details by email address to access account information, manage permissions, and verify identities within the Pickaxe platform.
Instructions
Get details for a specific user by email.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| studio | No | Studio name to use. Available: STAGING, MAIN, DEV, PRODUCTION. Default: PRODUCTION | |
| Yes | The user's email address |
Implementation Reference
- src/index.ts:529-532 (handler)Handler for the 'user_get' tool. Makes a GET request to the Pickaxe API endpoint `/studio/user/{email}` using the provided email and studio, then returns the JSON-stringified result.case "user_get": { const result = await pickaxeRequest(`/studio/user/${encodeURIComponent(args.email as string)}`, "GET", undefined, studio); return JSON.stringify(result, null, 2); }
- src/index.ts:279-292 (schema)Input schema definition for the 'user_get' tool, specifying parameters like studio (optional) and required email.name: "user_get", description: "Get details for a specific user by email.", inputSchema: { type: "object", properties: { studio: studioParam, email: { type: "string", description: "The user's email address", }, }, required: ["email"], }, },