Skip to main content
Glama

Connection Status

ms_auth_status

Check Microsoft 365 connection status and, if needed, open a browser to sign in to your account.

Instructions

Check Microsoft 365 connection status. If not connected, opens browser to sign in.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.9/5.0
Behavior4/5

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

Annotations cover the safety profile (readOnlyHint=false, openWorldHint=true, idempotentHint=false), but the description adds the key behavioral fact that a browser sign-in flow may be triggered — a material side effect not captured in annotations. It stops short of describing token persistence or what state the result reports.

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?

Two short sentences, zero padding, and the primary purpose is front-loaded before the conditional side-effect detail.

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 parameterless auth-check with a disclosed sign-in side effect and no output schema, the description is nearly complete. It could add what status values are returned or whether sign-in is interactive-blocking, but nothing essential for correct invocation is missing.

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 tool takes zero parameters and the schema is trivially complete, so there is nothing for the description to disambiguate. Baseline 4 applies.

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

Purpose4/5

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

States a specific verb+resource: 'Check Microsoft 365 connection status.' The resource is unique among siblings (all of which are data-access tools), so an agent can distinguish it without ambiguity, though the description never names or contrasts any sibling explicitly.

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?

Implicit guidance is present via the conditional 'If not connected, opens browser to sign in,' which tells the agent the side effect of calling while unauthenticated. However, it never states when to prefer this tool (e.g., before invoking ms_mail or ms_chat) or any exclusions, leaving usage to inference.

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