Skip to main content
Glama
deanchong
by deanchong

get_team_members

Read-onlyIdempotent

Retrieve all members of a specific TestMonitor team by its unique identifier, enabling AI agents to list team membership for project and test workflows.

Instructions

Get all members of a team. Retrieve all members of a specific team using its unique identifier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already cover read-only, idempotent, non-destructive behavior, so the description does not need to restate safety. It adds that all members are returned for a specific team identified by a unique identifier, but says nothing about pagination, ordering, or response shape.

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

Conciseness3/5

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

Two short sentences are front-loaded with the core action, but the second sentence largely restates the first rather than adding useful detail. The redundancy costs some efficiency.

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 simple read operation with rich annotations, the description states the resource and required identifier. However, with no output schema and no pagination or return-shape notes, it is only minimally complete for an operation that could return a large member list.

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

Parameters2/5

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

Schema description coverage is 0% for a nested required path object. The description mentions using a 'unique identifier' but does not clarify the path/teamId nesting, the integer nature of teamId, or any format constraint, adding little beyond the schema's field name.

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?

States a specific verb and resource: get all members of a team. The scope 'all members of a specific team' clearly distinguishes it from sibling tools like get_team (team details), get_team_collection (list teams), and post_team_members/delete_team_member (member 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?

No explicit when-to-use, when-not-to-use, or named alternatives are provided. Usage is implied by the simple read operation and the fact that it targets team members rather than a team itself, but the definition leaves the agent to infer that context.

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

Deploy Server

Other Tools