Skip to main content
Glama

WozApi

Adreslijst bekijken

get_address_list
Read-onlyIdempotent

Returns the status of an address list: trial rows, number of addresses found, price, payment link, progress, and after payment the result rows (at most 50 per call; use offset for more) and a download link for the Excel file. Can wait up to 20 seconds for the trial or the processing to finish.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offsetNoOptional. First result row to return after delivery, starting at 0.
list_tokenYesThe list_token from start_address_list.
wait_secondsNoOptional. Seconds to wait for a change while the trial or the processing runs, 0 to 20.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the safety profile is covered. The description adds genuinely new behavioral facts beyond the annotations: a hard cap of 50 result rows per call with offset-based paging, and a bounded 20-second blocking wait during trial/processing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two dense sentences with the return payload front-loaded and the operational constraints (row cap, offset, wait) appended. Every clause carries information, though the enumeration of return fields makes the first sentence long.

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?

There is no output schema, so the description must carry the return-value burden, and it does: it lists the returned fields, the pagination cap, the download link, and the blocking-wait semantics. Nothing an agent needs to call and interpret this read-only tool correctly is missing.

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?

Schema coverage is 100%, so all three parameters are documented in the schema, giving a baseline of 3. The description adds meaning beyond the schema by disclosing the 50-row-per-call cap that motivates offset, and by tying wait_seconds to the trial/processing lifecycle.

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 names a specific verb (returns the status of) and resource (an address list), then enumerates exactly what status fields come back: trial rows, address count, price, payment link, progress, result rows, and Excel download link. The reference to 'list_token from start_address_list' implicitly distinguishes it from the sibling that creates lists.

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 note that it 'can wait up to 20 seconds for the trial or the processing to finish' implies a polling pattern after start_address_list, but the description never states when to call this versus the sibling tools or what to do if the list is still not ready. Usage is implied rather than specified.

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.

Resources