Skip to main content
Glama
scalekit-inc

Scalekit MCP Server

Official

list_workspace_members

List all members in the current workspace with paginated results. Use pageToken to fetch pages and view responses in a structured table, then decide whether to load the next page.

Instructions

List all members in the current workspace. The tool requires 1 parameters: pageToken (1-based index). Show the response in tabular structured manner. After fetching each page, client should ask if it should pull next page or not.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageTokenNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses pagination via pageToken and instructs the client to ask before pulling the next page, which is a clear behavioral trait. However, it does not state that the operation is read-only, and it omits details about rate limits or potential side effects, though none are indicated. The tabular presentation instruction adds a minor behavioral note.

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

Conciseness4/5

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

The description is three sentences, front-loaded with the core purpose. It is efficient, though phrases like 'The tool requires 1 parameters' and the tabular presentation instruction add minor redundancy. Overall, it 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?

The description covers the primary purpose, pagination interaction, and presentation format, but it lacks details about the response fields, error handling, or permission requirements. Since there is no output schema, more explicit return information would improve completeness, but for a simple list tool it is adequate.

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

Parameters4/5

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

The schema only defines pageToken as a number with a default, so the description adds meaning by explaining it as a 1-based index and implying pagination through the interaction note. This compensates well for the 0% schema description coverage, though it could further clarify page size or termination conditions.

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 the resource 'workspace members', and specifies 'current workspace', which distinguishes it from sibling tools like list_organization_users and invite_workspace_member. This is specific and unambiguous.

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?

It provides the context that it operates on the current workspace, which implies when to use it, but it does not explicitly compare with alternatives like list_organization_users or invite_workspace_member. No exclusions or when-not-to-use guidance is given, so the usage is implied rather than explicit.

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