Skip to main content
Glama
toffguy77

globus-mcp

by toffguy77

checkout_info

Retrieve authorized users' checkout details: recipient, addresses, delivery slots, and totals. Returns a concise summary to protect personal data while avoiding order placement.

Instructions

Данные оформления: получатель, адреса, доступные слоты доставки, итоги. Требует авторизации. Заказ не оформляет.

Возвращает выжимку, а не сырой ответ: в нём лежат персональные данные (ФИО, телефон, полные адреса), и вываливать его целиком в контекст модели не нужно.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior5/5

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

With no annotations provided, the description carries the full transparency burden and does it well: it discloses the authorization requirement, confirms the tool is non-mutating, and explains that it returns a summarized digest rather than raw output. It also warns about sensitive personal data and advises against dumping the full result into the model context, which is valuable behavioral guidance beyond any structured metadata.

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 compact and well-structured: it leads with the tool's purpose, then adds preconditions, side-effect clarification, and a practical output-handling warning. Every sentence contributes meaningful information with no redundancy.

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 zero-parameter tool with an output schema, the description covers the essential operational context: what data is returned, authorization requirements, the fact that no order is placed, and how to handle the sensitive response. Nothing critical is missing for an agent to invoke this tool 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 has zero parameters, and the schema confirms no arguments are needed, so there is no parameter semantics gap. The description appropriately focuses on what the tool returns instead of trying to document nonexistent parameters.

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?

The description clearly identifies the tool as providing checkout data: recipient, addresses, delivery slots, and totals. It also explicitly states 'Заказ не оформляет' (does not place an order), which distinguishes it from order-placing actions, though it lacks a direct verb like 'retrieves' and does not name a specific sibling for contrast.

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

Usage Guidelines4/5

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

It states a necessary precondition ('Требует авторизации') and an explicit exclusion ('Заказ не оформляет'), giving the agent a clear sense of when this tool is appropriate for viewing checkout info. It does not explicitly mention alternatives or when-not-to-use beyond not placing an order, so it falls short of a 5.

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