Skip to main content
Glama

user_list

Retrieve a list of users in the Pickaxe studio with their product access and usage statistics for management and analytics purposes.

Instructions

List all users in the Pickaxe studio with their product access and usage stats.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
studioNoStudio name to use. Available: STAGING, MAIN, DEV, PRODUCTION. Default: PRODUCTION
skipNoNumber of users to skip. Default: 0
takeNoNumber of users to return. Default: 10

Implementation Reference

  • Handler for the user_list tool: extracts skip and take parameters (defaulting to 0 and 10), makes a GET request to the Pickaxe API endpoint `/studio/user/list` with pagination query params, and returns the JSON-stringified response.
    case "user_list": { const skip = args.skip ?? 0; const take = args.take ?? 10; const result = await pickaxeRequest(`/studio/user/list?skip=${skip}&take=${take}`, "GET", undefined, studio); return JSON.stringify(result, null, 2); }
  • src/index.ts:261-277 (registration)
    Registration of the user_list tool in the static tools array returned by ListToolsRequestHandler. Includes name, description, and input schema definition (with studio param reference, skip/take optional).
    name: "user_list", description: "List all users in the Pickaxe studio with their product access and usage stats.", inputSchema: { type: "object", properties: { studio: studioParam, skip: { type: "number", description: "Number of users to skip. Default: 0", }, take: { type: "number", description: "Number of users to return. Default: 10", }, }, }, },
  • Input schema for the user_list tool: object with optional 'studio' (referencing studioParam), 'skip' number (default 0), and 'take' number (default 10). No required fields.
    inputSchema: { type: "object", properties: { studio: studioParam, skip: { type: "number", description: "Number of users to skip. Default: 0", }, take: { type: "number", description: "Number of users to return. Default: 10", }, }, },

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