Skip to main content
Glama

find_pickup_options

Read-onlyIdempotent

Finds pickup stores and detour times for already chosen gifts, using your origin, destination, and remaining time to show which detours fit before your meeting.

Instructions

Finds pickup stores and detour times with Oda Juwotda(오다 주웠다) for gifts that are already chosen (gift_ids).

Use this as a follow-up after narrowing candidates with recommend_gifts. When origin, destination, and remaining time are all known from the start, plan_rush_gift alone is enough.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 픽업 후보 개수.
originYes출발지 이름. 예: 강남역
gift_idsYes픽업 가능성을 확인할 선물 ID 목록.
destinationYes목적지 이름. 예: 판교역
current_timeNo현재 시각. HH:MM 형식.18:00
transport_modeNo이동 수단. 예: car, taxi, transit, walkcar
minutes_until_meetingYes약속까지 남은 시간. 분 단위.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, destructiveHint false. Description adds the precondition that gifts are already chosen and references the Oda Juwotda service, but doesn't disclose additional side effects, limitations, or dependencies beyond annotations. With annotations carrying the safety profile, this is adequate but not rich.

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 sentences, front-loads purpose, then usage guidance. The 'Oda Juwotda(오다 주웠다)' phrase is unexplained and may be noise, but overall is efficient.

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

Completeness4/5

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

For a read-only tool with full schema coverage, output schema, and strong annotations, the description covers purpose and usage. It doesn't explain return format, but output schema exists; it doesn't discuss prerequisites beyond 'already chosen', which is stated. Minor gap: no mention of how limit interacts with results, but schema has default.

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 has 100% coverage, so baseline 3. Description repeats gift_ids but adds no extra semantics for parameters like minutes_until_meeting or transport_mode beyond what schema already provides.

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?

Description opens with 'Finds pickup stores and detour times' – a specific verb and resource. It also scopes to 'gifts that are already chosen (gift_ids)', distinguishing from recommend_gifts (narrowing candidates) and plan_rush_gift (all known from start).

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

Usage Guidelines5/5

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

Explicitly states when to use: as a follow-up after recommend_gifts. It also names the alternative plan_rush_gift and the condition under which that sibling alone suffices. This gives an agent clear decision rules.

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