Skip to main content
Glama

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
NameRequiredDescriptionDefault
studioNoStudio name to use. Available: STAGING, MAIN, DEV, PRODUCTION. Default: PRODUCTION
emailYesThe user's email address

Implementation Reference

  • 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); }
  • 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"], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aplaceforallmystuff/mcp-pickaxe'

If you have feedback or need assistance with the MCP directory API, please join our Discord server