Skip to main content
Glama

Get account details

get_account
Read-onlyIdempotent

Retrieve details for a specific Google account, including its role, granted OAuth level, calendars policy, and effective permissions.

Instructions

Show one account in detail: its role, the OAuth access level actually granted by Google, its calendars policy and its effective permissions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountYesThe account id to act on, e.g. "work" or "personal". Required whenever more than one account could apply.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already establish readOnlyHint, idempotentHint and destructiveHint=false, so the safety profile is covered. The description adds genuine behavioral value by disclosing the nature of the returned data, notably that the OAuth access level reported is the one 'actually granted by Google' and that permissions shown are 'effective', which is not derivable from annotations or schema.

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?

One tightly packed sentence that front-loads the action and then enumerates the payload with zero filler. Every clause earns its place.

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?

With no output schema, the description usefully compensates by listing the salient returned fields (role, granted OAuth level, calendars policy, effective permissions). It stops short of describing error behavior or what happens when the account id does not resolve, but is adequate for a simple read tool.

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?

Schema description coverage is 100% and there is a single required parameter, so the schema already explains the account id fully. The description adds no format, aliasing, or resolution detail beyond what the schema provides, making the baseline 3 appropriate.

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 and resource ('Show one account in detail') and enumerates the content returned: role, OAuth access level granted by Google, calendars policy, effective permissions. It is clearly distinguishable from list_accounts by the singular scope, though it does not name the 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?

Usage is implied by 'one account in detail' versus the sibling list_accounts, and the required account id in the schema reinforces it. However, there is no explicit statement of when to use this versus list_accounts or describe_permissions, nor any prerequisites.

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