Skip to main content
Glama
stackia
by stackia

List Team Members

list_team_members
Read-onlyIdempotent

List all members of a specific Microsoft Team, retrieving names, emails, roles, and IDs for a given team ID. Use this to quickly view team membership details.

Instructions

List all members of a specific Microsoft Team. Returns member names, email addresses, roles, and IDs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamIdYesTeam ID
tenantIdNoTarget tenant ID from list_tenants. Omit only when a default is configured or exactly one tenant is connected. Resource IDs belong to this tenant.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds value by specifying the output fields, but does not mention pagination, ordering, or permission requirements, which are minor for a simple list operation.

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, front-loaded sentence with no filler. It states the action, scope, and return values efficiently, earning its place with zero waste.

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

Completeness4/5

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

For a simple listing tool with two parameters and no output schema, the description provides the essential return fields and the scope. Annotations cover the safety profile, so nothing critical is missing for an agent to call this tool correctly.

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% because both parameters have descriptions, with tenantId having a detailed explanation. The tool description does not add extra parameter context beyond what the schema provides, so the baseline of 3 is appropriate.

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 'members of a specific Microsoft Team', and enumerates the returned fields (names, emails, roles, IDs). This distinguishes it from siblings like list_teams and list_chat_members without needing to open schemas.

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

Usage Guidelines4/5

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

The description explicitly scopes the tool to a 'specific Microsoft Team', making its use case clear. It doesn't name alternatives such as list_chat_members for chat members, but the context strongly implies it is for team memberships, and no contradictory guidance is given.

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