Skip to main content
Glama

getnet_list_accounts

Read-onlyIdempotent

Lista os lojistas (seller_id) Getnet conectados a este install — id, label.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds useful context about scope ('connected to this install') and return fields, but does not disclose additional behavioral traits like pagination or effects of the optional parameter.

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?

The description is a single, concise sentence that communicates the core function without unnecessary words. It is efficiently front-loaded.

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

Completeness3/5

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

Given the tool's simplicity (list, one optional parameter, no output schema), the description is adequate but missing details about the 'account' parameter and whether the list is paginated or filtered. The term 'this install' is ambiguous.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain the 'account' parameter. The tool description focuses on the overall function but leaves the parameter's purpose ambiguous.

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 action (list) and resource (Getnet merchants/lojistas) and distinguishes from sibling tools like getnet_get_card and getnet_list_customers. It also specifies the returned fields (id, label).

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives, nor any prerequisites or limitations. The description lacks context for decision-making.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct function: Getnet-specific tools target different resources (cards, payments, customers, accounts), while platform tools handle authentication, connection status, marketplace lookup, bug reporting, and version info. There is no overlap in the actions they perform.

Naming Consistency2/5

The Getnet tools follow a consistent `getnet_` prefix with verb_noun structure, but the platform-level tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) use a mix of bare verbs and noun phrases, and lack the prefix. This creates two divergent naming conventions within the same server.

Tool Count4/5

With 11 tools, the server has a reasonable number for a mixed-purpose integration. However, the inclusion of platform-wide management tools alongside Getnet-specific ones makes the scope feel broader than a typical payment server, but the count itself is not excessive.

Completeness2/5

The Getnet-specific tools are read-only (list/get operations) with no ability to create, update, or delete customers, cards, or payments. This is a significant gap for a payment-related server, though the marketplace tool could potentially compensate by invoking other MCPs.