Skip to main content
Glama
stackia
by stackia

Auth Status

auth_status
Read-onlyIdempotent

Check live authentication status for a Microsoft Teams tenant. Returns the tenant ID, user profile, token expiration, and any authentication errors to identify and resolve issues.

Instructions

Check live authentication for the selected tenant. Returns its tenant ID, user profile, token expiration, and any authentication error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds value by noting the check is 'live' and by listing returned auth-related details such as token expiration and errors, which is useful behavioral context.

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. Every part earns its place: it states the action, the target, and the returned information.

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 optional-parameter read-only tool, the description covers what the agent needs: the purpose, the target tenant, and the returned fields. It does not detail output formatting, but that is not required here given the tool's simplicity.

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?

The schema already fully documents tenantId with 100% description coverage, including when to omit it. The description only refers to 'selected tenant' and adds no new parameter meaning, so the baseline of 3 applies.

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 uses a specific verb and resource: 'Check live authentication for the selected tenant.' It clearly states what the tool returns (tenant ID, user profile, token expiration, authentication error), which distinguishes it from siblings like get_current_user or list_tenants.

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 clearly conveys this is a read-only status check for the selected tenant, so an agent can infer when to use it. It does not explicitly name alternatives or exclusions, but the purpose is specific enough to route usage correctly.

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