Skip to main content
Glama

Account providers status

account_status
Read-onlyIdempotent

Identify which AI coding CLIs are installed and authenticated, then retrieve the login command for each account. Prioritizes existing subscriptions over per-token APIs.

Instructions

Which AI CLIs (Claude Code, Codex, Gemini CLI, Qwen Code, Copilot CLI, OpenCode, Cursor Agent) are installed and logged in with an account or subscription, and the login command for each. Account providers are used before per-token APIs. No model calls.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refreshNoRe-check now instead of using the 5-minute cache.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv4.3.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds 'No model calls' and the fact that it checks installation/login state, which is not redundant with annotations. It also implies a read-only status check without additional risk disclosure, but the annotations cover the safety profile.

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?

Three sentences with no fluff. The core purpose is front-loaded, and each sentence adds value: what it lists, when it applies, and what it does not do. Efficient and well-structured.

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 simple status tool with one optional boolean and no output schema, the description fully explains the output (which CLIs, login status, login command) and its usage context. An agent has everything needed to invoke it 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?

The only parameter, 'refresh', is fully described in the schema with its default and meaning. The description does not need to add parameter details since schema coverage is 100%. The description's mention of caching is only implied via the parameter, not the main text.

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 tool lists which AI CLIs are installed and logged in, plus the login command for each. It names specific CLIs, distinguishing it from generic status or model tools. The phrase 'No model calls' further clarifies its scope.

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 description says 'Account providers are used before per-token APIs,' implying when to check account status. However, it does not explicitly name alternatives or conditions for not using this tool, leaving some inference to the agent.

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