Skip to main content
Glama

Search delivery addresses

address_search
Read-onlyIdempotent

Search the address database to suggest valid zip/city entries or verify a combination. Uses the server-provided action from the profile response.

Instructions

Search the address database (zip/city) by following the server-provided addressSearchAction from the profile response. Use to suggest a valid address before address_upsert, or to verify a zip/city combination. Pass the action object verbatim from profile — never hand-craft it. Read-only; no confirmation token required (but the profile action needs a loaded access token).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesZip or city query, e.g. '110 00' or 'Brno'.
actionYesAn AppAction object copied verbatim from a prior tool response (e.g. `profile`); it must contain form.meta.href. Never hand-craft URLs.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errNo
msgNo
dataNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, and the description adds meaningful behavioral context: the action must be taken verbatim from `profile`, hand-crafting is forbidden, no confirmation token is required, and a loaded access token is needed. This goes well beyond annotation defaults.

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 tight sentences: definition, use cases, and critical action/auth guidance. No fluff; all information is relevant and presented in logical order with the most important constraint (never hand-craft the action) front-loaded.

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?

Given the rich output schema, comprehensive annotations, and clear 2-parameter schema, the description covers the essential operational details: purpose, workflow context, action provenance, read-only nature, and token requirement. Nothing critical is missing for an agent to select and invoke this tool 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?

Schema description coverage is 100%, with both `query` and `action` already well documented. The description mostly reinforces the schema's guidance about passing the action verbatim, so it adds little new parameter-level meaning beyond the structured schema.

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?

States a specific verb ('Search'), a specific resource ('address database (zip/city)'), and the mechanism (server-provided addressSearchAction from `profile`). Clearly distinguishes its role from siblings like address_upsert and find_pickup_points by framing it as address suggestion/verification.

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?

Explicitly says when to use it: 'before address_upsert' or to 'verify a zip/city combination'. This gives clear context and points at the related sibling tool, though it does not state when not to use it or name an alternative tool for the same task.

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