Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

kfc_delivery_estimate

Check if a KFC store delivers to a specific address and get the estimated delivery fee with line-item breakdown and pickup/dropoff times, using checkout-time data without placing an order.

Instructions

Check KFC delivery serviceability and estimated fee for one store and address. Checks whether a KFC restaurant's delivery integration can deliver to a given address and, when it can, the estimated delivery fee (broken down by fee line item) and pickup/dropoff time. This reads the same checkout-time estimate KFC's own site calls -- it does not add an item to a cart or place an order, and takes no payment or account information. serviceable is true only when the upstream returned a real estimate; a false value with reason populated covers every other case seen live: the delivery provider not enabled at this store, the address being outside the delivery zone, or the delivery marketplace itself reporting the store temporarily inactive. order_subtotal materially affects the fee estimate (KFC's own fee schedules can vary by order size), so it is required rather than defaulted. pickup_at defaults to 30 minutes from now (an "order now" style estimate) when omitted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesDelivery address city
stateYesDelivery address state, two-letter code
address1YesDelivery address line 1
address2NoDelivery address line 2
latitudeYesDelivery address latitude
longitudeYesDelivery address longitude
pickup_atNoRFC3339 pickup time (default 30 minutes from now)
postal_codeYesDelivery address postal code
country_codeNoDelivery address country code (default US)
store_numberYesKFC's alphanumeric store number, from /kfc/stores or /kfc/nearby
order_subtotalYesOrder subtotal before fees, in dollars
delivery_providerNoDelivery provider to check (default DOORDASH)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It is exceptionally transparent: it states the tool reads a checkout-time estimate, does not perform transactions, takes no payment/account info, explains the meaning of the serviceable flag, notes the effect of order_subtotal, and details defaults. This fully informs the agent of what to expect.

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 moderately lengthy but every sentence adds value. It is front-loaded with the core purpose, then explains exclusions, serviceable semantics, and parameter rationale. It is well-structured and not overly verbose given the complexity of the tool.

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?

Given the tool's complexity (12 parameters, no output schema), the description is quite complete. It covers the key output (estimated fee broken down by line item, pickup/dropoff time) and explains serviceable semantics. It doesn't fully specify the return structure, but that may be acceptable without an output schema. The description covers all major behavioral aspects.

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 description coverage is 100%, so baseline is 3. The description adds significant meaning beyond the schema: it explains why order_subtotal is required (affects fee), provides defaults for pickup_at and delivery_provider, and notes that store_number comes from /kfc/stores or /kfc/nearby. This extra context helps agents use parameters correctly.

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 clearly states the tool's function: 'Check KFC delivery serviceability and estimated fee for one store and address.' It specifies the verb (check), resource (KFC delivery serviceability and fee), and scope (one store and address). This distinguishes it from siblings like kfc_store or kfc_menu, which focus on other aspects. The statement about reading the same checkout-time estimate as KFC's site further clarifies its specific purpose.

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?

The description explains what the tool does not do ('does not add an item to a cart or place an order, and takes no payment or account information') and clarifies when serviceable is true/false, including the reasons for false. It also explains why order_subtotal is required and mentions defaults for pickup_at and delivery_provider. However, it does not explicitly name alternative tools for when this one should not be used, though the context implies it for delivery estimation only.

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

Install Server

Other Tools