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",
        },
      },
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but only states what the tool does, not behavioral traits. It doesn't disclose whether this is a read-only operation, pagination behavior beyond skip/take parameters, rate limits, authentication needs, or what format the 'usage stats' will be in.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without any wasted words. Every element (verb, resource, attributes) earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a list tool with 3 parameters and 100% schema coverage but no annotations or output schema, the description adequately states the purpose but lacks behavioral context. It doesn't explain what 'product access and usage stats' includes or the response format, leaving gaps for the agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters (studio, skip, take) with their types and defaults. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List') and resource ('all users in the Pickaxe studio') with specific attributes ('product access and usage stats'). It distinguishes from siblings like user_get (single user) and user_create/delete/update (mutations).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for listing users with stats, but provides no explicit guidance on when to use this vs. alternatives like user_get for single users or memory_list for memory data. No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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