Skip to main content
Glama

Account session status

auth_status
Read-onlyIdempotent

Confirm whether your stored session is actually authenticated, not just present. Optionally verify it against a read-only protected endpoint, without ever returning credentials.

Instructions

Inspect the local encrypted account session. By default no website request is made; stored does not mean authenticated. Set verify=true to check a read-only protected endpoint. Never returns credentials/cookies. To log in, the user must run aurorarepos-mcp auth login in their own terminal; never request a password or 2FA code in chat.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
verifyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
stateYes
saved_atYes
verifiedYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A4.8/5.0
Behavior5/5

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

The description adds substantial behavior beyond the annotations: no website request by default, stored sessions do not imply authentication, verify=true checks a read-only endpoint, credentials/cookies are never returned, and login requires an external command. This aligns with readOnlyHint=true and idempotentHint=true.

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

Conciseness4/5

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

The description is efficient and front-loaded, with each sentence earning its place. It is slightly dense due to four distinct points, but remains clear and free of fluff.

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

Completeness5/5

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

For a tool with one optional parameter, rich annotations, and an output schema, the description covers the key agent needs: default behavior, verification option, credential safety, and the required login flow. Nothing essential 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 schema describes verify only as a boolean with a default of false, and there is no parameter description. The description compensates by explaining that verify=true triggers a check of a read-only protected endpoint, and that no request is made by default.

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 states a clear verb and resource: 'Inspect the local encrypted account session.' It distinguishes the tool's focus (auth status) from the sibling tools focused on apps, releases, and categories.

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

Usage Guidelines5/5

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

It explains when the tool makes a network request and when it does not, tells the agent to use verify=true for a read-only endpoint check, and explicitly instructs that login must happen via the user's terminal command, not in chat. This is direct usage guidance with clear exclusions.

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