Skip to main content
Glama

plan_rush_gift

Read-onlyIdempotent

Plan a last-minute gift pickup en route to a meeting. Enter origin, destination, budget, and time left to get gift ideas, nearby pickup stores, detour time, and on-time arrival check.

Instructions

Plans a last-minute gift pickup with Oda Juwotda(오다 주웠다).

Use this tool whenever the user gives an origin, a destination, and the minutes left before a meeting. It returns everything in one call: gift recommendations, pickup stores near the destination, detour travel time, whether the user can still arrive on time, and a short gift message. If the user mentions a route or a meeting time, call this tool instead of recommend_gifts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 추천 개수.
originYes출발지 이름. 예: 강남역
occasionYes상황. 예: 생일, 집들이, 사과, 감사, 기념일
budget_krwYes선물 예산. 원 단위.
constraintsNo피해야 할 조건. 예: 향 싫어함, 술 제외
destinationYes목적지 이름. 예: 판교역
preferencesNo선호 조건. 예: 디저트, 꽃, 실용적인 것
current_timeNo현재 시각. HH:MM 형식.18:00
relationshipYes받는 사람과의 관계. 예: 여자친구, 상사, 친구, 부모님
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.2/5.0
Behavior4/5

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

The annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral context by explaining that it returns everything in one call, including feasibility of arriving on time, which is not obvious from the schema alone.

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 front-loaded with the core purpose, then gives the usage trigger, the output bundle, and a sibling comparison. Every sentence contributes actionable information, and there is no filler or redundant restating of the tool name.

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?

The output schema exists and the annotations are rich, so the description does not need to restate return structures or safety. It clearly explains the composite nature and the core use case, but it could more fully address how the other sibling tools relate to this one, especially when a user only wants a gift message or pickup option.

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%, so all 11 parameters already have individual descriptions. The tool description highlights only origin, destination, and minutes_until_meeting as the main triggers, without adding parameter-level meaning beyond what the 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?

The description states the specific action ('Plans a last-minute gift pickup') and lists the concrete output bundle it returns. It also distinguishes itself from recommend_gifts and implicitly from the single-purpose sibling tools by framing itself as the one-call composite tool.

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 gives an explicit trigger condition ('whenever the user gives an origin, a destination, and the minutes left before a meeting') and names recommend_gifts as the alternative. However, it does not clarify when an agent should prefer draft_gift_message or find_pickup_options instead, so the routing guidance is not fully complete.

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