Skip to main content
Glama

connection_status

Read-onlyIdempotent

Check stored connection health, sync freshness, and shared local archive location. Does not verify a live login.

Instructions

Check stored connection health, synchronization freshness and shared local archive location. This does not verify a live login.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint=false and openWorldHint, so the safety profile is covered. The description does add real context beyond that—it reads *stored* state rather than performing live authentication, and it reports a local archive path—but says nothing about freshness limits, staleness, or failure modes.

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 tight sentences with the substantive scope front-loaded and the crucial limitation ('does not verify a live login') placed second so it is not buried. No filler or redundancy.

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 zero-parameter status tool with no output schema, the description effectively enumerates what is reported: health, sync freshness, and archive location. It could note how staleness is expressed or that results reflect cached data only, but an agent has enough to invoke it correctly.

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, so there is nothing for the description to disambiguate; the baseline for a parameterless tool is 4. The description correctly refrains from inventing inputs.

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 ('Check') and three concrete resources: stored connection health, synchronization freshness, and the shared local archive location. The second sentence usefully scopes it away from a live-login check, which implicitly separates it from 'connect', though it never names a 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?

The clause 'This does not verify a live login' implies that 'connect' is the alternative when live verification is needed, giving an inferred usage boundary. However, it never says explicitly when to call this versus 'sync_status' or 'connect', so the guidance remains implicit rather than stated.

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