Skip to main content
Glama
agentspan-ai

MCP Test Server

by agentspan-ai

collection_zip

Combine two lists into pairs by matching elements at the same position.

Instructions

Zip two lists into a list of pairs.

Args: list_a: The first list. list_b: The second list.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_aYes
list_bYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.8/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden, yet it says nothing about the most consequential behavior of a zip: what happens when list_a and list_b have different lengths (truncate, pad, or error). It also omits any ordering guarantee. Only the basic output shape is implied.

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?

The description is short and front-loaded with the actual operation, which is good. The trailing Args section is largely redundant with the schema but brief enough not to be a significant cost.

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?

An output schema exists, so return values need not be explained. However, for a zip operation the length-mismatch behavior is a genuine open question that the description never resolves, leaving a meaningful gap for a simple but semantics-sensitive tool.

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 Args block only restates the parameter names ("The first list", "The second list") without adding type, ordering, or pairing semantics. It provides essentially no meaning beyond what the schema titles already convey.

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+resource ("Zip two lists") and even names the output shape ("a list of pairs"), which is more than a tautology. It does not, however, distinguish itself from nearby siblings like collection_merge or collection_group_by, leaving the agent to infer the difference.

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?

There is no when-to-use guidance, no stated preconditions, and no mention of alternatives such as collection_merge or collection_group_by that also combine lists. The agent must guess at the intended context.

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